View Source Ethers.Transaction (Ethers v0.2.0)
Transaction struct and helper functions
Summary
Types
@type t() :: %Ethers.Transaction{ access_list: [{binary(), [binary()]}], chain_id: binary() | nil, data: binary(), from: Ethers.Types.t_address() | nil, gas: binary() | nil, gas_price: binary() | nil, max_fee_per_gas: binary() | nil, max_priority_fee_per_gas: binary(), nonce: binary() | nil, signature_r: binary() | nil, signature_recovery_id: 0 | 1 | nil, signature_s: binary() | nil, to: Ethers.Types.t_address() | nil, type: t_transaction_type(), value: binary() }
@type t_transaction_type() :: :legacy | :eip1559