Skip to content

thirdweb@5.75.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 07 Dec 00:33
· 1583 commits to main since this release
15eb6bd

Minor Changes

Patch Changes

  • #5639 ed0886a Thanks @jnsdls! - default account components to not retry on failure

  • #5640 5070e76 Thanks @jnsdls! - accept react 19 as peer explicitly

  • #5487 5574c15 Thanks @joaquim-verges! - BETA support for 7579 modular smart accounts

    You can now create modular smart wallets using the 7579 preset.

    Keep in mind that this is in BETA, and there might be breaking API changes.

    import { sepolia } from "thirdweb/chains";
    import { smartWallet, Config } from "thirdweb/wallets/smart";
     const modularSmartWallet = smartWallet(
      Config.erc7579({
        chain: sepolia,
        sponsorGas: true,
        factoryAddress: "0x...", // the 7579 factory address
        validatorAddress: "0x...", // the default validator module address
      }),
    });
  • #5630 0aa2416 Thanks @kien-ngo! - Add erc20Value to buyFromListing transaction

  • #5641 d1716fc Thanks @joaquim-verges! - Support ERC6492 for smart account signatures