Skip to content

thirdweb@5.25.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 28 May 20:04
· 6062 commits to main since this release
31a4943

Minor Changes

  • #3140 fc1b658 Thanks @gregfromstl! - Show in-app wallet users an option to export their private key. Enabled by default.

    Usage

    To hide the private key export:

    import { inAppWallet } from "thirdweb/wallets";
    const wallet = inAppWallet({
      hidePrivateKeyExport: true,
    });
  • #3154 99d11bb Thanks @gregfromstl! - Adds the ability to copy the wallet connect connection link as an alternative to scanning the QR code

  • #3150 9c417d9 Thanks @gregfromstl! - Adds onDisconnect callback to connect button

    Usage

    <ConnectButton
      client={THIRDWEB_CLIENT}
      onDisconnect={() => console.log("disconnect")}
      theme={theme === "light" ? "light" : "dark"}
    />

Patch Changes