EVMTransaction

Description: EVMTransaction represents a transaction on an EVM-compatible blockchain. This type contains all the necessary information about the transaction, including details about the sender, receiver, and various parameters of the transaction.

Attributes:

  • from_address: The address of the sender.

  • to_address: The address of the recipient.

  • value: The amount of the native coin sent in the transaction.

  • gas: The amount of gas units used by the transaction.

  • gas_price: The price of gas units for the transaction.

  • nonce: The nonce value of the transaction.

  • data: The data payload of the transaction.

  • hash: The hash of the transaction.

  • block_hash: The hash of the block containing the transaction.

  • block_number: The number of the block containing the transaction.

  • status: The status of the transaction ("unsubmitted", "pending", "success", "failure").

Last updated