coinbaseWallet
Wallet config for the Coinbase Wallet.
import { ThirdwebProvider, coinbaseWallet,} from "@thirdweb-dev/react-native"; <ThirdwebProvider supportedWallets={[ coinbaseWallet({ callbackURL: new URL("app-redirect-url://"), }), ]}> <YourApp /></ThirdwebProvider>;
function coinbaseWallet(config?: { callbackURL?: URL; recommended?: boolean;}): { config: undefined | { callbackURL?: URL; recommended?: boolean }; id: "coinbase"; meta: { iconURL: string; name: string }; recommended: undefined | boolean;};
let returnType: { config: undefined | { callbackURL?: URL; recommended?: boolean }; id: "coinbase"; meta: { iconURL: string; name: string }; recommended: undefined | boolean;};
The wallet config to be used by the ThirdwebProvider