@ethereumjs/tx / FeeMarketEIP1559TxData
FeeMarketEIP1559Transaction data.
-
↳
FeeMarketEIP1559TxData
- accessList
- chainId
- data
- gasLimit
- gasPrice
- maxFeePerGas
- maxPriorityFeePerGas
- nonce
- r
- s
- to
- type
- v
- value
• Optional
accessList: AccessListBuffer
| AccessList
The access list which contains the addresses/storage slots which the transaction wishes to access
AccessListEIP2930TxData.accessList
• Optional
chainId: BNLike
The transaction's chain ID
AccessListEIP2930TxData.chainId
• Optional
data: BufferLike
This will contain the data of the message or the init of a contract.
• Optional
gasLimit: BNLike
The transaction's gas limit.
AccessListEIP2930TxData.gasLimit
• Optional
gasPrice: undefined
The transaction's gas price, inherited from Transaction. This property is not used for EIP1559 transactions and should always be undefined for this specific transaction type.
AccessListEIP2930TxData.gasPrice
• Optional
maxFeePerGas: BNLike
The maximum total fee
• Optional
maxPriorityFeePerGas: BNLike
The maximum inclusion fee per gas (this fee is given to the miner)
• Optional
nonce: BNLike
The transaction's nonce.
• Optional
r: BNLike
EC signature parameter.
• Optional
s: BNLike
EC signature parameter.
• Optional
to: AddressLike
The transaction's the address is sent to.
• Optional
type: BNLike
The transaction type
• Optional
v: BNLike
EC recovery ID.
• Optional
value: BNLike
The amount of Ether sent.