Skip to main content

NFTDrop class

Setup a collection of one-of-one NFTs that are minted as users claim them.

Example

import { ThirdwebSDK } from "@thirdweb-dev/sdk";

const sdk = new ThirdwebSDK("{{chainName}}");
const contract = sdk.getNFTDrop("{{contract_address}}");

Constructors

ConstructorModifiersDescription
(constructor)(network, address, storage, options, contractWrapper)Constructs a new instance of the NFTDrop class

Properties

PropertyModifiersTypeDescription
claimConditionsDropClaimConditions<DropERC721>Configure claim conditions
contractAbistaticany
contractRolesstaticreadonly ["admin", "minter", "transfer"]
contractTypestatic"nft-drop"
encoderContractEncoder<DropERC721>
estimatorGasCostEstimator<DropERC721>
eventsContractEvents<DropERC721>
metadataContractMetadata<DropERC721, typeof NFTDrop.schema>
platformFeesContractPlatformFee<DropERC721>
revealerDelayedReveal<DropERC721>Delayed reveal
rolesContractRoles<DropERC721, typeof NFTDrop.contractRoles[number]>
royaltiesContractRoyalty<DropERC721, typeof NFTDrop.schema>Configure royalties
salesContractPrimarySale<DropERC721>

Methods

MethodModifiersDescription
burnToken(tokenId)Burn a single NFT
claim(quantity, checkERC20Allowance)Claim NFTs to the connected wallet.
claimTo(destinationAddress, quantity, checkERC20Allowance)Claim unique NFTs to a specific Wallet
createBatch(metadatas, options)Create a batch of unique NFTs to be claimed in the future
getAll(queryParams)Get All Minted NFTs
getAllClaimed(queryParams)Get All Claimed NFTs
getAllUnclaimed(queryParams)Get All Unclaimed NFTs
getClaimTransaction(destinationAddress, quantity, checkERC20Allowance)Construct a claim transaction without executing it. This is useful for estimating the gas cost of a claim transaction, overriding transaction options and having fine grained control over the transaction execution.
getOwned(walletAddress)Get Owned NFTs
getOwnedTokenIds(walletAddress)Get all token ids of NFTs owned by a specific wallet.
isTransferRestricted()Get whether users can transfer NFTs from this contract
totalClaimedSupply()Get the claimed supply
totalSupply()Get the total count NFTs in this drop contract, both claimed and unclaimed
totalUnclaimedSupply()Get the unclaimed supply

Signature:

export declare class NFTDrop extends Erc721<DropERC721>

Extends: Erc721<DropERC721