Last updated
Last updated
Transactions can trigger smaller atomic actions that modify the internal state of an Ethereum Virtual Machine. Information about the execution of these actions is logged and can be found stored as an EVM execution trace, or just a trace.
Examples
Examples
transaction_hash
str
transaction_index
int
from_address
str
to_address
str
value
decimal
input
str
output
str
trace_type
str
call_type
str
reward_type
str
gas
int
gas_used
decimal
subtraces
int
trace_address
str
error
str
status
int
block_timestamp
timestamp
block_number
int
block_hash
str
trace_id
str
trace_id
varchar
primary key
from_address
bytea
to_address
bytea
value
numeric(100)
input
bytea
output
bytea
trace_type
varchar
call_type
varchar
gas
numeric(100)
gas_used
numeric(100)
subtraces
integer
trace_address
integer[]
error
text
status
integer
block_number
bigint
block_hash
bytea
block_timestamp
timestamp
transaction_index
integer
transaction_hash
bytea
create_time
timestamp
default now()
update_time
timestamp
default now()
reorg
boolean