Skip to content

thirdweb@5.39.0

Compare
Choose a tag to compare
@jnsdls jnsdls released this 25 Jul 04:59
· 3101 commits to main since this release
79e34e1

Minor Changes

  • #3785 105e523 Thanks @kien-ngo! - Add ClaimButton for claiming tokens from all thirdweb Drop contracts

    Higher level abstraction to claim tokens from all thirdweb Drop contracts

    import { ClaimButton } from "thirdweb/react";
    import { ethereum } from "thirdweb/chains";
    
    <ClaimButton
      contractAddress="0x..."
      chain={ethereum}
      client={client}
      claimParams={{
        type: "ERC721",
        quantity: 1n,
      }}
    >
      Claim now
    </ClaimButton>;

Patch Changes