Skip to content
Compare
Choose a tag to compare
@jnsdls jnsdls released this 13 Sep 19:15
· 219 commits to main since this release
d115307

Minor Changes

  • #4571 5058fdb Thanks @gregfromstl! - Adds X authentication

  • #4565 c0778cb Thanks @gregfromstl! - Adds parseAvatarRecord and parseNftUri utilities

    import { parseAvatarRecord } from "thirdweb/extensions/ens";
    import { parseNftUri } from "thirdweb/extensions/common";
    
    const avatarUrl = await parseAvatarRecord({
      client,
      uri: "...",
    });
    
    const nftUri = await parseNftUri({
      client,
      uri: "...",
    });

Patch Changes

  • #4582 5d3b395 Thanks @gregfromstl! - Adds the ability to hide certain wallets in the wallet switcher

    <ConnectButton
      client={client}
      detailsModal={{
        // We hide the in-app wallet so they can't switch to it
        hiddenWallets: ["inApp"],
      }}
      accountAbstraction={{
        chain: baseSepolia,
        sponsorGas: true,
      }}
    />
  • #4546 3901805 Thanks @edwardysun! - Add preferredProvider to buyWithFiat