Interface CreateCollectionRequest

interface CreateCollectionRequest {
    collection_image_url?: string;
    contract_address: string;
    description?: string;
    icon_url?: string;
    metadata_api_url?: string;
    name: string;
    owner_public_key: string;
    project_id: number;
}

Hierarchy

  • CreateCollectionRequest
    • CreateCollectionRequest

Properties

collection_image_url?: string

URL of the tile image for this collection

CreateCollectionRequest

contract_address: string

Ethereum address of the ERC721 contract

CreateCollectionRequest

description?: string

Description of the collection

CreateCollectionRequest

icon_url?: string

URL of the icon for this collection

CreateCollectionRequest

metadata_api_url?: string

URL of the metadata for this collection

CreateCollectionRequest

name: string

Name of the collection

CreateCollectionRequest

owner_public_key: string

Owner Public Key: The uncompressed public key of the owner of the contract

CreateCollectionRequest

project_id: number

The collection's project ID

CreateCollectionRequest