Interface Project

interface Project {
    api_key?: string;
    chain_type?: string;
    collection_limit_expires_at: string;
    collection_monthly_limit: number;
    collection_remaining: number;
    company_name: string;
    contact_email: string;
    environment_id?: string;
    environment_name?: string;
    id: number;
    mint_limit_expires_at: string;
    mint_monthly_limit: number;
    mint_remaining: number;
    name: string;
    org_id?: string;
    project_group_id?: string;
    publishable_key?: string;
    publishable_key_created_at?: string;
}

Hierarchy

  • Project
    • Project

Properties

api_key?: string

API key for the project. This is only for zkevm project. This API is not for increasing rate limit yet.

Project

chain_type?: string

The project ChainType

Project

collection_limit_expires_at: string

The current period expiry date for collection limit

Project

collection_monthly_limit: number

The total monthly collection limit

Project

collection_remaining: number

The number of collection remaining in the current period

Project

company_name: string

The company name

Project

contact_email: string

The project contact email (must be registered as a developer account with Immutable at https://hub.immutable.com)

Project

environment_id?: string

The environment ID

Project

environment_name?: string

The user environment name correlating to this project

Project

id: number

The project ID

Project

mint_limit_expires_at: string

The current period expiry date for mint operation limit

Project

mint_monthly_limit: number

The total monthly mint operation limit

Project

mint_remaining: number

The number of mint operation remaining in the current period

Project

name: string

The project name

Project

org_id?: string

The organisation ID that the project belongs to

Project

project_group_id?: string

Project group id

Project

publishable_key?: string

The public publishable_key for the project

Project

publishable_key_created_at?: string

The public publishable_key created time

Project