GetNftEditionsRpcResponse: {
    after?: string;
    before?: string;
    cursor?: string;
    editions: DasApiNftEdition[];
    limit: number;
    master_edition_address: string;
    max_supply?: number;
    page?: number;
    supply: number;
    total: number;
}

Response type for getNftEditions RPC call

Type declaration

  • Optional after?: string

    After cursor for pagination

  • Optional before?: string

    Before cursor for pagination

  • Optional cursor?: string

    Cursor for pagination

  • editions: DasApiNftEdition[]

    Array of edition information

  • limit: number

    Limit used for pagination

  • master_edition_address: string

    The master edition address

  • Optional max_supply?: number

    Maximum supply of the master edition

  • Optional page?: number

    Current page number

  • supply: number

    Current supply of editions

  • total: number

    Number of editions returned in the current page. Use supply for the total minted edition count.

Generated using TypeDoc