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

    Interface GetMultipleCompressedAccountProofsResponse

    Response from getMultipleCompressedAccountProofs.

    interface GetMultipleCompressedAccountProofsResponse {
        context: { slot: number };
        value: Readonly<
            {
                hash: string;
                leafIndex: number;
                merkleTree: string;
                proof: string[];
                root: string;
                rootSeq: number
                | bigint;
            },
        >[];
    }
    Index

    Properties

    Properties

    context: { slot: number }

    Slot context at the time of the request.

    value: Readonly<
        {
            hash: string;
            leafIndex: number;
            merkleTree: string;
            proof: string[];
            root: string;
            rootSeq: number
            | bigint;
        },
    >[]

    Array of Merkle proofs, one per requested hash, returned in the same order as the request.