Ronin

All data tables available for Ronin.

The Ronin raw blockchain data tables in BigQuery.

The Ronin raw blockchain data tables in BigQuery.

Columns

Blocks

The ronin.blocks table provides indexed views of all blocks.

NameTypeDescription
block_hashstringThe hash of all the block's contents.
l1_block_numberintegerThe block's number.
gas_limitintegerThe maximum amount of gas that can be used in the block (in gas units).
gas_usedintegerThe amount of gas used in the block (in gas units).
parent_hashstringThe hash of the block's parent block.
sizeintegerThe block's size (in bytes).
timestamptimestampThe block's timestamp.
transaction_countintegerThe number of transactions in the block.

Logs

The ronin.logs table provides indexed views of all emitted logs.

NameTypeDescription
addressstringThe address of the smart contract that emitted the log.
block_numberintegerThe block number the parent transaction was included in.
block_timestamptimestampThe log's timestamp.
datastringThe data of the log (bytes data as a hex string).
log_indexintegerThe index of the log in the block.
topicsstringThe log topics.
transaction_hashstringThe parent transaction's hash.
transaction_indexintegerThe position of the parent transaction in the block.

Transactions

The ronin.transactions table provides indexed views of all transactions that succeeded, or were partially successful (had at least 1 successful internal transaction).

NameTypeDescription
block_numberintegerThe block number the transaction was included in.
block_timestamptimestampThe transaction's timestamp.
from_addressstringThe address of the transaction's sender.
gas_pricestringThe actual price of gas used in the transaction (in Wei per gas unit).
receipt_gas_usedintegerThe amount of gas used in the transaction (in gas units).
inputstringThe input data for the transaction.
nonceintegerThe transaction sender's nonce.
to_addressstringThe address of the transaction's recipient, if any.
transaction_hashstringThe transaction's hash.
transaction_typeintegerThe type of the transaction (see EIP-1559, EIP-2718).
valuestringThe amount sent by the transaction (in Wei).