xrpl
    Preparing search index...

    Interface NFTHistoryResponse

    Expected response from an NFTHistoryRequest.

    interface NFTHistoryResponse {
        api_version?: number;
        forwarded?: boolean;
        id: string | number;
        result: {
            ledger_index_max: number;
            ledger_index_min: number;
            limit?: number;
            marker?: unknown;
            nft_id: string;
            transactions: NFTHistoryTransaction[];
            validated?: boolean;
        };
        status?: string;
        type: string;
        warning?: "load";
        warnings?: ResponseWarning[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    api_version?: number
    forwarded?: boolean
    id: string | number
    result: {
        ledger_index_max: number;
        ledger_index_min: number;
        limit?: number;
        marker?: unknown;
        nft_id: string;
        transactions: NFTHistoryTransaction[];
        validated?: boolean;
    }

    Type declaration

    • ledger_index_max: number

      The ledger index of the most recent ledger actually searched for transactions.

    • ledger_index_min: number

      The ledger index of the earliest ledger actually searched for transactions.

    • 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.

    • nft_id: string

      The unique identifier of an NFToken.

    • transactions: NFTHistoryTransaction[]

      Array of transactions matching the request's criteria, as explained below.

    • Optionalvalidated?: boolean

      If included and set to true, the information in this response comes from a validated ledger version. Otherwise, the information is subject to change.

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