Options
All
  • Public
  • Public/Protected
  • All
Menu

Interface EthereumTransaction

The data stored in a block for a signed Ethereum transaction

Hierarchy

  • EthereumTransaction

Index

Properties

data

data: Buffer

An unlimited size byte array specifying the EVM-code for the account initialisation procedure, for a contract transaction, or an unlimited size byte array specifying the input data of the message call, for a message call.

from

from: BigInt

The 160-bit address of the message caller.

gasLimit

gasLimit: BigInt

A scalar value equal to the maximum amount of gas that should be used in executing this transaction.

gasPrice

gasPrice: BigInt

A scalar value equal to the number of Wei to be paid per unit of gas for all computation costs incurred as a result of the execution of this transaction.

nonce

nonce: BigInt

A scalar value equal to the number of transactions sent from this address or, in the case of accounts with associated code, the number of contract-creations made by this account.

to

to: BigInt

The 160-bit address of the message call’s recipient or, for a contract creation transaction, 0.

value

value: BigInt

A scalar value equal to the number of Wei to be transferred to the message call’s recipient or, in the case of contract creation, as an endowment to the newly created account.

Generated using TypeDoc