Transactions

Transactions, which change the state of the EVM, need to be broadcast to the whole network. Any node can broadcast a request for a transaction to be executed on the EVM; after this happens, a validator will execute the transaction and propagate the resulting state change to the rest of the network.

Table Columns

Column NameDescriptionExample

hash

Unique identifier of a transaction.

0xf2bf43e4d4a072b7fe60f5387370e3e702a5af4dd9719de51209e4c3c4f7afbd

nonce

The transaction nonce, unique to the wallet

205

transaction_index

The position of this transaction in the block that it belongs to. The first transaction has index 0.

134

from_address

The address of the sending party of this transaction.

0x28c9fb5832426c19c0c0208cc81f9ac0be3f5bd3

to_address

The address of the receiving party of this transaction (could be a contract address).

0xacfbf4c63d23711fe31f7a8c1c5b721416ec37f8

value

The amount of ether sent in this transaction, in wei.

100000000000000000

gas

The maximum amount of gas allocated for this transaction in wei.

21000

gas_price

Cost per unit of gas specified by the transaction in wei. The higher the gas price, the higher chance of getting included in a block.

5000000000

input

The data send along with the transaction.

0x

receipt_cumulative_gas_used

The total amount of gas used when this transaction was executed in the block.

15513177

receipt_gas_used

Gas consumed by the transaction in wei.

21000

receipt_contract_address

The contract address created, if the transaction was a contract creation, otherwise null.

receipt_root

Transaction stateroot (pre Byzantium)

receipt_status

Success status of the transaction. Either 1 (success) or 0 (failure).

1

block_timestamp

The time when the block that contains this transaction was included on the blockchain.

2022-08-05 15:21:53+00:00

block_number

The length of the chain, in blocks.

20178552

block_hash

Unique identifier of the block that includes this transaction.

0x6868fb38bd49d65cfd72124cc01acb43631f9c19c72016968044f0661c3083b0

max_fee_per_gas

The maximum fee per gas that the transaction sender is willing to pay for this transaction (introduced in EIP1559)

nan

max_priority_fee_per_gas

The maximum fee per gas the transaction sender is willing to give to validators (Proof of Stake) or miners (Proof of Work) to incentivize them to include their transaction (introduced in EIP1559)

nan

transaction_type

The integer of the transaction type, 0x0 for legacy transactions, 0x1 for access list types, 0x2 for dynamic fees.

nan

transaction_type

The transaction type.

nan

receipt_effective_gas_price

The sum of the base fee and tip paid per unit of gas.

5000000000

receipt_gas_used_for_l1

nan

nan

receipt_l1_block_number

nan

nan

log_count

Number of event logs emitted in the transaction.

nan

_created_at

Timestamp of the entry creation.

NaT

_updated_at

Timestamp of the entry update.

NaT

Last updated