Skip to main content

SignatureDrop.totalClaimedSupply() method

Get the claimed supply

Example

const claimedNFTCount = await contract.totalClaimedSupply();
console.log(`NFTs claimed so far: ${claimedNFTCount}`);

Signature:

totalClaimedSupply(): Promise<BigNumber>;

Returns:

Promise<BigNumber>

the claimed supply

Remarks

Get the number of claimed NFTs in this Drop.

*