Skip to main content

Table Description

The creation_traces table contains information about the creation of smart contracts on the Berachain blockchain. This includes the address of the contract, the address of the creator, the block number at which the contract was created, the transaction hash, and the contract’s bytecode. This table is useful for understanding the deployment of smart contracts on the Berachain blockchain. The berachain.creation_traces table is a subset of the traces table, which contains information about all traces on the Berachain blockchain. The creation_traces table is filtered to only include traces that create new smart contracts. The filter for this is type = create.

Column Descriptions

ColumnTypeDescription
block_timetimestampTimestamp of the block containing this creation trace
block_numberbigintBlock number containing this creation trace
tx_hashvarbinaryHash of the transaction that created the contract
addressvarbinaryAddress of the newly created contract
fromvarbinaryAddress that deployed the contract
codevarbinaryBytecode of the deployed contract
block_monthdateMonth of the block (for partitioning)

Table Sample