Documentation
    Preparing search index...

    Interface MultiGetTransactionBlocksParams

    Returns an ordered list of transaction responses The method will throw an error if the input contains any duplicate or the input size exceeds QUERY_MAX_RESULT_LIMIT

    interface MultiGetTransactionBlocksParams {
        digests: string[];
        options?: null | SuiTransactionBlockResponseOptions;
        signal?: AbortSignal;
    }
    Index

    Properties

    digests: string[]

    A list of transaction digests.

    config options to control which fields to fetch

    signal?: AbortSignal