Asset: {
    cachedImageUrl: string | null;
    contractAddress: string;
    metadata: MetadataWithAttributes;
    numberOwners: Bignumber;
    owner: string | null;
    supply: Bignumber;
    tokenId: string;
}

Type declaration

  • cachedImageUrl: string | null

    The cached image URL of the asset.

  • contractAddress: string

    The contract address of the asset.

  • metadata: MetadataWithAttributes

    The metadata of the asset.

  • numberOwners: Bignumber

    The number of distinct owners of the asset. 1 if asset is an ERC721.

  • owner: string | null

    The owner address of the asset. null if asset is an ERC1155 (see getAssetOwners route).

  • supply: Bignumber

    The supply of the asset. 1 if asset is an ERC721.

  • tokenId: string

    The token ID of the asset.