NFTWithOwner

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

Properties

NFTWithOwner

contract_address: string

The address of NFT contract

NFTWithOwner

token_id: string

An uint256 token id as string

NFTWithOwner

account_address: string

The account address of the owner of the NFT

NFTWithOwner

quantity: string

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

NFTWithOwner

balance: string

The amount of owned tokens (uint256 as string)

NFTWithOwner

updated_at: string

When the owner last changed for the given NFT

NFTWithOwner