Skip to main content

NFTDrop.getAllClaimed() method

Get All Claimed NFTs

Example

const claimedNFTs = await contract.getAllClaimed();
const firstOwner = claimedNFTs[0].owner;

Signature:

getAllClaimed(queryParams?: QueryAllParams): Promise<NFTMetadataOwner[]>;

Parameters

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

Returns:

Promise<NFTMetadataOwner[]>

The NFT metadata and their ownersfor all NFTs queried.

Remarks

Fetch all the NFTs (and their owners) that have been claimed in this Drop.

*