Skip to content

Releases: thirdweb-dev/js

[email protected]

20 Dec 01:40
d14e0c4
Compare
Choose a tag to compare

Minor Changes

  • #5799 90e2b97 Thanks @gregfromstl! - Feature: Allows hiding the "Linked Profiles" button in the ConnectButton Details Modal

    <ConnectButton
      detailsModal={{ manageWallet: { allowLinkingProfiles: false } }}
    />

Patch Changes

@thirdweb-dev/[email protected]

20 Dec 01:40
d14e0c4
Compare
Choose a tag to compare

[email protected]

16 Dec 12:12
6994310
Compare
Choose a tag to compare

Minor Changes

  • #5691 5be197b Thanks @kien-ngo! - Add headless components for Wallets: WalletProvider, WalletIcon and WalletName

Patch Changes

@thirdweb-dev/[email protected]

16 Dec 12:12
6994310
Compare
Choose a tag to compare

@thirdweb-dev/[email protected]

16 Dec 12:12
6994310
Compare
Choose a tag to compare

Patch Changes

@thirdweb-dev/[email protected]

13 Dec 05:15
aa72ba2
Compare
Choose a tag to compare

Patch Changes

@thirdweb-dev/[email protected]

13 Dec 06:46
29d32b8
Compare
Choose a tag to compare

Patch Changes

[email protected]

12 Dec 22:44
203da76
Compare
Choose a tag to compare

Minor Changes

  • #5709 cd55ada Thanks @gregfromstl! - Adds a defaultSmsCountryCode configuration option to In-App and Ecosystem Wallets

    createWallet("inApp", {
        auth: {
          options: [
            "email",
            "phone",
          ],
          mode: "redirect",
          defaultSmsCountryCode: "IN", // Default country code for SMS
        },
      }),
  • #5604 03b6d0d Thanks @ElasticBottle! - Support the ability to unlink accounts for in app wallet with more than 1 linked account.

    It's supported out of the box in the connect UI.

    For typescript users, the following code snippet is a simple example of how it'd work.

    import { inAppWallet } from "thirdweb/wallets";
    
    const wallet = inAppWallet();
    wallet.connect({ strategy: "google" });
    
    const profiles = await getProfiles({
      client,
    });
    
    const updatedProfiles = await unlinkProfile({
      client,
      profileToUnlink: profiles[1], // assuming there is more than 1 profile linked to the user.
    });

[email protected]

12 Dec 00:48
1787539
Compare
Choose a tag to compare

Minor Changes

Patch Changes

@thirdweb-dev/[email protected]

12 Dec 22:44
203da76
Compare
Choose a tag to compare

Minor Changes