Table Description

Contains checkpoint data from the Sui blockchain. Checkpoints are fundamental units of consensus in Sui, representing a collection of transactions that have been finalized and agreed upon by validators. This table is partitioned by date.

Column Descriptions

ColumnTypeDescription
checkpoint_digeststringUnique hash identifier of the checkpoint
sequence_numberdecimal(20,0)Sequential number of the checkpoint
epochdecimal(20,0)Epoch number when the checkpoint was created
timestamp_msdecimal(20,0)Unix timestamp in milliseconds when the checkpoint was created
datedateDate of when the checkpoint was created
previous_checkpoint_digeststringHash of the previous checkpoint
end_of_epochbooleanWhether this checkpoint marks the end of an epoch
total_gas_costbigintTotal gas cost for all transactions in this checkpoint
computation_costdecimal(20,0)Total computation cost for transactions in this checkpoint
storage_costdecimal(20,0)Total storage cost for transactions in this checkpoint
storage_rebatedecimal(20,0)Total storage rebate for transactions in this checkpoint
non_refundable_storage_feedecimal(20,0)Non-refundable storage fees
total_transaction_blocksdecimal(20,0)Total number of transaction blocks in this checkpoint
total_transactionsdecimal(20,0)Total number of transactions in this checkpoint
total_successful_transaction_blocksdecimal(20,0)Total number of successful transaction blocks in this checkpoint
total_successful_transactionsdecimal(20,0)Total number of successful transactions in this checkpoint
network_total_transactiondecimal(20,0)Total number of transactions processed by the network up to this checkpoint
validator_signaturestringValidator signature for this checkpoint
_updated_attimestampLast time the record was updated
_ingested_attimestampTime when the record was ingested

Table Sample