Helius SDK - v2.2.2
    Preparing search index...

    Interface GetAssetProofResponse

    Merkle proof data for a compressed NFT.

    interface GetAssetProofResponse {
        burnt?: boolean;
        last_indexed_slot?: number;
        leaf: string;
        node_index: number;
        proof: string[];
        root: string;
        tree_id: string;
    }
    Index

    Properties

    burnt?: boolean

    Whether the asset has been burnt.

    last_indexed_slot?: number

    All on-chain data up to and including this slot is guaranteed to have been indexed.

    leaf: string

    The leaf hash representing this compressed NFT's data in the Merkle tree.

    node_index: number

    The position index of this compressed NFT in the Merkle tree structure.

    proof: string[]

    Array of Merkle proof hashes needed to cryptographically verify this compressed NFT exists in the tree.

    root: string

    The root hash of the Solana state compression Merkle tree that contains this compressed NFT.

    tree_id: string

    The unique identifier of the Solana Merkle tree where this compressed NFT is stored.