Skip to content

thirdweb@5.64.4

Compare
Choose a tag to compare
@jnsdls jnsdls released this 31 Oct 02:48
· 1872 commits to main since this release
60629e3

Patch Changes

  • #5237 802d3bf Thanks @joaquim-verges! - Sanitize block explorer URLs

  • #5231 686d0c3 Thanks @joaquim-verges! - Respect custom bundler URL for getting gas fees + better DX for predictSmartAccountAddress()

  • #5187 68ce724 Thanks @ElasticBottle! - expose WalletUser type for in app / ecosystem wallets

  • #5214 ad4af68 Thanks @joaquim-verges! - Reduce async calls before requesting webauthn credentials for ios 15

  • #5229 9425e9e Thanks @ElasticBottle! - Consolidate custom jwt and custom auth endpoint through common endpoint

  • #5244 178d407 Thanks @joaquim-verges! - Add support for custom singlePhase drops

    If you are using a custom drop contract, you can now set claim conditions and claim by passing the singlePhaseDrop option to the setClaimConditions and claimTo functions.

    setClaimConditions({
      contract,
      phases: [
        {
          startTime: new Date(0),
          maxClaimableSupply: 10n,
        },
      ],
      tokenId: 0n,
      singlePhaseDrop: true, // <--- for custom drop contracts
    });