Help & Support

Lens Chain BigQuery Schemas

Tables Schema of Lens Chain BigQuery.

addresses

SELECT * FROM `lens-chain-mainnet.public.addresses` LIMIT 1;

This table stores information about all addresses on the network, including smart contracts.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
addressbyteaThe blockchain address (in bytes format)
bytecodebyteaContract bytecode for smart contract addresses
createdInBlockNumberbigintBlock number when this address was created
creatorTxHashbyteaTransaction hash that created this address
creatorAddressbyteaAddress that created this address (contract deployer)
createdInLogIndexintegerLog index within the block where this address was created
isEvmLikebooleanWhether the address follows EVM address format

Back to top

blocks

SELECT * FROM `lens-chain-mainnet.public.blocks` LIMIT 1;

This table contains information about each block in the blockchain.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintBlock number
noncevarcharBlock nonce value
difficultyintegerMining difficulty at this block
gasLimitvarchar(128)Maximum gas allowed in this block
gasUsedvarchar(128)Total gas used by all transactions in this block
baseFeePerGasvarchar(128)Base fee per gas unit in this block
l1BatchNumberbigintLayer 1 batch number that includes this block
l1TxCountintegerNumber of L1 transactions in this block
l2TxCountintegerNumber of L2 transactions in this block
hashbyteaBlock hash
parentHashbyteaHash of the parent block
minerbyteaAddress of the miner/validator who produced this block
extraDatabyteaAdditional data included in the block
timestamptimestampTimestamp when the block was mined

Back to top

transactions

SELECT * FROM `lens-chain-mainnet.public.transactions` LIMIT 1;

This table stores all transactions processed on the network.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique transaction identifier
noncebigintTransaction nonce (unique per sender address)
transactionIndexintegerIndex position of transaction in the block
gasLimitvarchar(128)Maximum gas allowed for this transaction
gasPricevarchar(128)Gas price in wei
maxFeePerGasvarchar(128)Maximum fee per gas (EIP-1559)
maxPriorityFeePerGasvarchar(128)Maximum priority fee per gas (EIP-1559)
valuevarchar(128)Amount of cryptocurrency transferred
chainIdintegerChain identifier
blockNumberbigintBlock number where this transaction was included
typeintegerTransaction type
accessListjsonbAccess list for EIP-2930 transactions
l1BatchNumberbigintLayer 1 batch number that includes this transaction
feevarcharTransaction fee
isL1OriginatedbooleanWhether the transaction originated from Layer 1
receivedAttimestampTimestamp when the transaction was received by the network
hashbyteaTransaction hash
tobyteaRecipient address
frombyteaSender address
databyteaTransaction data/input
blockHashbyteaHash of the block containing this transaction
receiptStatusintegerTransaction receipt status (1 = success, 0 = failure)
gasPerPubdatavarcharGas per public data
errorvarcharError message if the transaction failed
revertReasonvarcharReason for transaction reversion if applicable

Back to top

transactionReceipts

SELECT * FROM `lens-chain-mainnet.public.transactionReceipts` LIMIT 1;

This table contains the receipts generated after transaction execution.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique receipt identifier
transactionIndexintegerIndex position of transaction in the block
typeintegerReceipt type
gasUsedvarchar(128)Amount of gas used by this transaction
effectiveGasPricevarchar(128)Effective gas price for this transaction
blockNumberbigintBlock number containing this transaction
cumulativeGasUsedvarchar(128)Cumulative gas used up to this transaction in the block
byzantiumbooleanWhether the receipt uses Byzantium format
statusintegerTransaction status code
transactionHashbyteaHash of the transaction
tobyteaRecipient address
frombyteaSender address
contractAddressbyteaAddress of newly created contract, if applicable
rootbyteaState root (pre-Byzantium)
logsBloombyteaBloom filter for indexed event logs
blockHashbyteaHash of the block containing this transaction

Back to top

logs

SELECT * FROM `lens-chain-mainnet.public.logs` LIMIT 1;

This table stores event logs emitted during transaction execution.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique log identifier
blockNumberbigintBlock number containing this log
transactionIndexintegerIndex position of transaction in the block
removedbooleanWhether the log was removed due to chain reorganization
logIndexintegerIndex position of log in the transaction
transactionHashbyteaHash of the transaction that generated this log
addressbyteaAddress that generated this log
databyteaNon-indexed log parameters
topicsARRAYIndexed log topics
timestamptimestampTimestamp of the block containing this log

Back to top

transfers

SELECT * FROM `lens-chain-mainnet.public.transfers` LIMIT 1;

This table records all asset transfers that occur on the network.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique transfer identifier
blockNumberbigintBlock number containing this transfer
amountvarchar(128)Amount transferred
typeUSER-DEFINEDTransfer type
fieldsjsonbAdditional fields specific to this transfer
frombyteaSender address
tobyteaRecipient address
transactionHashbyteaHash of the transaction that caused this transfer
tokenAddressbyteaAddress of the token being transferred
logIndexintegerIndex position of the log that recorded this transfer
transactionIndexintegerIndex position of transaction in the block
timestamptimestampTimestamp of the block containing this transfer
isFeeOrRefundbooleanWhether this transfer is a fee payment or refund
isInternalbooleanWhether this is an internal transfer
tokenTypeUSER-DEFINEDType of token being transferred

Back to top

addressTransfers

SELECT * FROM `lens-chain-mainnet.public.addressTransfers` LIMIT 1;

This table maps addresses to their transfers for efficient querying.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique record identifier
transferNumberbigintReference to the transfer.number
addressbyteaThe address involved in the transfer
blockNumberbigintBlock number containing this transfer
timestamptimestampTimestamp of the block containing this transfer
isFeeOrRefundbooleanWhether this transfer is a fee payment or refund
logIndexintegerIndex position of the log that recorded this transfer
tokenAddressbyteaAddress of the token being transferred
fieldsjsonbAdditional fields specific to this transfer
isInternalbooleanWhether this is an internal transfer
tokenTypeUSER-DEFINEDType of token being transferred
typeUSER-DEFINEDTransfer type

Back to top

addressTransactions

SELECT * FROM `lens-chain-mainnet.public.addressTransactions` LIMIT 1;

This table maps addresses to transactions for efficient querying.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique record identifier
transactionHashbyteaTransaction hash
addressbyteaAddress involved in the transaction
blockNumberbigintBlock number containing this transaction
receivedAttimestampTimestamp when the transaction was received
transactionIndexintegerIndex position of transaction in the block

Back to top

tokens

SELECT * FROM `lens-chain-mainnet.public.tokens` LIMIT 1;

This table stores information about tokens on the network.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintUnique token identifier
symbolvarcharToken symbol
namevarcharToken name
decimalsintegerNumber of decimal places
blockNumberbigintBlock number when this token was created
l2AddressbyteaLayer 2 address of this token
l1AddressbyteaLayer 1 address of this token
transactionHashbyteaHash of the transaction that created this token
logIndexintegerIndex position of the log that recorded this token creation
usdPricedouble precisionCurrent USD price
liquiditydouble precisionToken liquidity
iconURLvarcharURL to token icon
offChainDataUpdatedAttimestampTimestamp when off-chain data was last updated

Back to top

balances

SELECT * FROM `lens-chain-mainnet.public.balances` LIMIT 1;

This table tracks token balances for addresses.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
addressbyteaOwner address
tokenAddressbyteaToken address
blockNumberbigintBlock number at which this balance was recorded
balancevarchar(128)Token balance amount

Back to top

batches

SELECT * FROM `lens-chain-mainnet.public.batches` LIMIT 1;

This table stores information about Layer 2 batch processing for rollups.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
numberbigintBatch number
rootHashbyteaRoot hash of the batch
l1GasPricevarchar(128)Layer 1 gas price at the time of this batch
l2FairGasPricevarchar(128)Layer 2 fair gas price for this batch
commitTxHashbyteaHash of the transaction that committed this batch
committedAttimestampTimestamp when this batch was committed
proveTxHashbyteaHash of the transaction that proved this batch
provenAttimestampTimestamp when this batch was proven
executeTxHashbyteaHash of the transaction that executed this batch
executedAttimestampTimestamp when this batch was executed
l1TxCountintegerNumber of Layer 1 transactions in this batch
l2TxCountintegerNumber of Layer 2 transactions in this batch
timestamptimestampTimestamp of the batch

Back to top

counterStates

SELECT * FROM `lens-chain-mainnet.public.counterStates` LIMIT 1;

This table tracks the processing state of various tables for synchronization purposes.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
tableNamevarchar(64)Name of the table being tracked
lastProcessedRecordNumberbigintLast processed record number

Back to top

counters

SELECT * FROM `lens-chain-mainnet.public.counters` LIMIT 1;

This table maintains various counters for database operations.

ColumnTypeDescription
createdAttimestampTimestamp when this record was created
updatedAttimestampTimestamp when this record was last updated
iduuidUnique counter identifier
countbigintCurrent counter value
tableNamevarchar(64)Table this counter is associated with
queryStringvarcharQuery string used for this counter

Back to top