thirdweb supports a number of first-party web3 wallets such as Metamask and Phantom.
import { ConnectButton } from "thirdweb/react";import { createWallet } from "thirdweb/wallets"; const wallets = [ createWallet("io.metamask"), createWallet("com.coinbase.wallet"), createWallet("me.rainbow"),]; function Example() { return ( <div> <ConnectButton client={client} wallets={wallets} /> </div> );}
View full list of supported wallets.