Documentation
    Preparing search index...

    Interface TryMultiGetPastObjectsParams

    Note there is no software-level guarantee/SLA that objects with past versions can be retrieved by this API, even if the object and version exists/existed. The result may vary across nodes depending on their pruning policies. Return the object information for a specified version

    interface TryMultiGetPastObjectsParams {
        options?: SuiObjectDataOptions | null;
        pastObjects: GetPastObjectRequest[];
        signal?: AbortSignal;
    }
    Index

    Properties

    options?: SuiObjectDataOptions | null

    options for specifying the content to be returned

    pastObjects: GetPastObjectRequest[]

    a vector of object and versions to be queried

    signal?: AbortSignal