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