Interface Collection

interface Collection {
    address: string;
    collection_image_url: null | string;
    created_at: null | string;
    description: null | string;
    icon_url: null | string;
    metadata_api_url: null | string;
    name: string;
    project_id: number;
    project_owner_address: string;
    updated_at: null | string;
}

Hierarchy

  • Collection
    • Collection

Properties

address: string

Ethereum address of the ERC721 contract

Collection

collection_image_url: null | string

URL of the tile image for this collection

Collection

created_at: null | string

Timestamp of when the collection was created

Collection

description: null | string

Description of the collection

Collection

icon_url: null | string

URL of the icon for this collection

Collection

metadata_api_url: null | string

URL of the metadata for this collection

Collection

name: string

Name of the collection

Collection

project_id: number

The collection's project ID

Collection

project_owner_address: string

Project owner address

Collection

updated_at: null | string

Timestamp of when the collection was updated

Collection