NFTOwner

interface NFTOwner {
    chain: blockchainData.Types.Chain;
    contract_address: string;
    token_id: string;
    account_address: string;
    quantity: string;
    balance: string;
    updated_at?: string;
}

Properties

NFTOwner

contract_address: string

The address of NFT contract

NFTOwner

token_id: string

An uint256 token id as string

NFTOwner

account_address: string

The account address of the owner of the NFT

NFTOwner

quantity: string

(deprecated - use balance instead) The quantity of owned tokens (uint256 as string)

NFTOwner

balance: string

The amount of owned tokens (uint256 as string)

NFTOwner

updated_at?: string

When the NFT owner was last updated

NFTOwner