EditionDrop.getOwned() method
Get Owned NFTs
Example
// Address of the wallet to get the NFTs of
const address = "{{wallet_address}}";
const nfts = await contract.getOwned(address);
Signature:
getOwned(walletAddress?: string): Promise<EditionMetadataOwner[]>;
Parameters
Parameter | Type | Description |
---|---|---|
walletAddress | string | (Optional) |
Returns:
Promise<EditionMetadataOwner[]>
The NFT metadata for all NFTs in the contract.
Remarks
Get all the data associated with the NFTs owned by a specific wallet.