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
Parameter | Type | Description |
---|---|---|
queryParams | QueryAllParams | (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.
*