Manta Pacific

All data tables available for Manta Pacific

The Manta Pacific raw blockchain data tables in BigQuery.

The Manta Pacific raw blockchain data tables in BigQuery.

Columns

Blocks

The manta.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 manta.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.

Traces

The manta.traces table provides indexed views of all traces.

NameTypeDescription
from_addressstringThe address of the transaction's sender.
block_numberintegerThe block number the parent transaction was included in.
block_timestamptimestampThe log's timestamp.
inputstringThe input data for the trace.
outputstringThe output data for the trace.
to_addressstringThe address of the transaction's recipient, if any.
trace_addressstringThe address of the trace within the transaction's call stack.
transaction_indexintegerThe index of the trace in the transaction.
trace_typestringThe trace's call type (call, staticcall, delegatecall, callcode, create, or selfdestruct).
transaction_hashstringThe parent transaction's hash.
transaction_indexintegerThe position of the parent transaction in the block.
valuestringThe amount sent by the transaction (in Wei).

Transactions

The manta.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).