SignatureDrop.totalUnclaimedSupply() method
Get the unclaimed supply
Example
const unclaimedNFTCount = await contract.totalUnclaimedSupply();
console.log(`NFTs left to claim: ${unclaimedNFTCount}`);
Signature:
totalUnclaimedSupply(): Promise<BigNumber>;
Returns:
Promise<BigNumber>
the unclaimed supply
Remarks
Get the number of unclaimed NFTs in this Drop.
*