Skip to main content

NFTDrop.getAllUnclaimed() method

Get All Unclaimed NFTs

Example

const unclaimedNFTs = await contract.getAllUnclaimed();
const firstUnclaimedNFT = unclaimedNFTs[0].name;

Signature:

getAllUnclaimed(queryParams?: QueryAllParams): Promise<NFTMetadata[]>;

Parameters

ParameterTypeDescription
queryParamsQueryAllParams(Optional) optional filtering to only fetch a subset of results.

Returns:

Promise<NFTMetadata[]>

The NFT metadata for all NFTs queried.

Remarks

Fetch all the NFTs that have been not been claimed yet in this Drop.

*