Contract Internal Transactions

The Contract Internal Transactions table is used to store data extracted from transaction traces. It specifically focuses on traces related to contract creation or traces that involve a transfer of value.

ETL data class

Column Name
Data Type
Note

transaction_hash

str

length 66

transaction_index

int

from_address

str

length 42

to_address

str

length 42

value

int

trace_type

str

length 16

call_type

str

length 16

gas

int

gas_used

int

subtraces

int

trace_address

str

length 8192

error

str

status

int

block_timestamp

timestamp

block_number

int

block_hash

str

length 66

trace_id

str

Examples

Model in the Database

Column Name
Data Type
Note

transaction_hash

bytea

transaction_index

bigint

from_address

bytea

to_address

bytea

value

numeric(78)

trace_type

varchar

call_type

varchar

gas

numeric(38)

gas_used

numeric(38)

subtraces

bigint

trace_address

varchar

error

text

status

integer

block_timestamp

timestamp

block_number

bigint

block_hash

bytea

trace_id

text

Examples

Last updated