Wallet config for MetaMask Wallet.
import { ThirdwebProvider, metamaskWallet,} from "@thirdweb-dev/react-native"; <ThirdwebProvider supportedWallets={[metamaskWallet()]}> <YourApp /></ThirdwebProvider>;
function metamaskWallet(config?: WalletConnectConfig): { create: (options: WalletOptions) => MetaMaskWallet; id: "metamask"; meta: { iconURL: string; links: { native: string; universal: string }; name: string; }; recommended: undefined | boolean;};
The config for MetamaskWallet
let config: WalletConnectConfig;
let returnType: { create: (options: WalletOptions) => MetaMaskWallet; id: "metamask"; meta: { iconURL: string; links: { native: string; universal: string }; name: string; }; recommended: undefined | boolean;};
The wallet config to be used by the ThirdwebProvider