Collection

interface Collection {
    chain: blockchainData.Types.Chain;
    name: null | string;
    symbol: null | string;
    contract_type: CollectionContractType;
    contract_address: string;
    description: null | string;
    image: null | string;
    external_link: null | string;
    contract_uri?: null | string;
    base_uri: null | string;
    verification_status: AssetVerificationStatus;
    indexed_at: string;
    updated_at: string;
    metadata_synced_at: null | string;
}

Properties

Collection

name: null | string

The name of the collection

Collection

symbol: null | string

The symbol of contract

Collection

contract_type: CollectionContractType

Collection

contract_address: string

The address of the contract

Collection

description: null | string

The description of collection

Collection

image: null | string

The url of the collection image

Collection

external_link: null | string

The url of external link

Collection

contract_uri?: null | string

The uri for the metadata of the collection

Collection

base_uri: null | string

The metadata uri for nft

Collection

verification_status: AssetVerificationStatus

Collection

indexed_at: string

When the collection was first indexed

Collection

updated_at: string

When the collection was last updated

Collection

metadata_synced_at: null | string

When the collection metadata was last synced

Collection