Skip to content

thirdweb@5.23.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 22 May 04:36
· 2668 commits to main since this release
71da068

Minor Changes

  • #3103 a2275c4 Thanks @gregfromstl! - Adds unstyled prop to TransactionButton to remove default styles

    <TransactionButton
      transaction={() => {}}
      onSuccess={handleSuccess}
      onError={handleError}
      unstyled
      className="bg-white text-black rounded-md p-4 flex items-center justify-center"
    >
      Confirm Transaction
    </TransactionButton>
  • #3083 5994685 Thanks @MananTank! - Add support for deep-linking to Metamask app instead of using WalletConnect on mobile devices when using Connect UI (ConnectButton / ConnectEmbed) components.

    <ConnectButton
      client={client}
      wallets={[
        createWallet("io.metamask", {
          preferDeepLink: true,
        }),
      ]}
    />
  • #3064 f55fa4c Thanks @joaquim-verges! - In-app wallet support for react native

Patch Changes