@hyperledger/fabric-gateway
    Preparing search index...

    Interface Checkpoint

    Used to get the checkpointed state.

    interface Checkpoint {
        getBlockNumber(): bigint | undefined;
        getTransactionId(): string | undefined;
    }

    Hierarchy (View Summary)

    Index

    Methods

    • Get the checkpointed block number, or undefined if there is no previously saved state.

      Returns bigint | undefined

    • Get the last processed transaction ID within the current block.

      Returns string | undefined