xrpl
    Preparing search index...

    Interface NFTsByIssuerResponse

    Expected response from an NFTsByIssuerRequest.

    interface NFTsByIssuerResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: {
            issuer: string;
            limit?: number;
            marker?: unknown;
            nft_taxon?: number;
            nfts: NFToken[];
        };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: {
        issuer: string;
        limit?: number;
        marker?: unknown;
        nft_taxon?: number;
        nfts: NFToken[];
    }

    Type declaration

    • issuer: string

      The unique identifier for the account, most commonly the account's address

    • Optionallimit?: number

      The limit value used in the request.

    • Optionalmarker?: unknown

      Server-defined value indicating the response is paginated. Pass this to the next call to resume where this call left off.

    • Optionalnft_taxon?: number

      Use to filter NFTs issued by this issuer that have this taxon.

    • nfts: NFToken[]

      A list of NFTs issued by the account. The order of the NFTs is not associated with the date the NFTs were minted.

    status?: string
    type: string
    warning?: "load"
    warnings?: ResponseWarning[]