Skip to content

v2.13.0

Compare
Choose a tag to compare
@0xFirekeeper 0xFirekeeper released this 06 Jan 11:45
· 14 commits to main since this release
aab098c

What's Changed

  • Added DropER721_Burn, DropERC1155_BurnBatch, TokenERC721_Burn, TokenERC1155_Burn, TokenERC1155_BurnBatch contract extensions.
  • Overriding default RPCs is now allowed through a new ThirdwebClient creation parameter rpcOverrides.
var client = ThirdwebClient.Create(
    clientId: "myepicclientid",
    bundleId: "my.bundle.id", // for native apps
    rpcOverrides: new()
    {
        { 1, "https://eth.llamarpc.com" },
        { 42161, "https://arbitrum.llamarpc.com" }
    }
);
  • Removed some leftover unnecessary logging.