Used to get the checkpointed state.

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

Hierarchy (view full)

Methods

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

    Returns undefined | bigint

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

    Returns undefined | string