Skip to content

@thirdweb-dev/react-native-adapter@1.3.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 09 Sep 22:09
· 2517 commits to main since this release
85c951a

Minor Changes

  • #4094 f1d087e Thanks @joaquim-verges! - Support for Coinbase Smart Wallet in React Native

    You can now use the Coinbase Smart Wallet in your React Native apps.

    const wallet = createWallet("com.coinbase.wallet", {
      appMetadata: {
        name: "My app name",
      },
      mobileConfig: {
        callbackURL: "https://example.com",
      },
      walletConfig: {
        options: "smartWalletOnly",
      },
    });
    
    await wallet.connect({
      client,
    });