Skip to content

Latest commit

 

History

History
247 lines (131 loc) · 5.57 KB

FeeMarketEIP1559TxData.md

File metadata and controls

247 lines (131 loc) · 5.57 KB

@ethereumjs/tx / FeeMarketEIP1559TxData

Interface: FeeMarketEIP1559TxData

FeeMarketEIP1559Transaction data.

Hierarchy

Table of contents

Properties

Properties

accessList

Optional accessList: AccessListBuffer | AccessList

The access list which contains the addresses/storage slots which the transaction wishes to access

Inherited from

AccessListEIP2930TxData.accessList

Defined in

types.ts:178


chainId

Optional chainId: BNLike

The transaction's chain ID

Inherited from

AccessListEIP2930TxData.chainId

Defined in

types.ts:173


data

Optional data: BufferLike

This will contain the data of the message or the init of a contract.

Inherited from

AccessListEIP2930TxData.data

Defined in

types.ts:142


gasLimit

Optional gasLimit: BNLike

The transaction's gas limit.

Inherited from

AccessListEIP2930TxData.gasLimit

Defined in

types.ts:127


gasPrice

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.

Overrides

AccessListEIP2930TxData.gasPrice

Defined in

types.ts:189


maxFeePerGas

Optional maxFeePerGas: BNLike

The maximum total fee

Defined in

types.ts:197


maxPriorityFeePerGas

Optional maxPriorityFeePerGas: BNLike

The maximum inclusion fee per gas (this fee is given to the miner)

Defined in

types.ts:193


nonce

Optional nonce: BNLike

The transaction's nonce.

Inherited from

AccessListEIP2930TxData.nonce

Defined in

types.ts:117


r

Optional r: BNLike

EC signature parameter.

Inherited from

AccessListEIP2930TxData.r

Defined in

types.ts:152


s

Optional s: BNLike

EC signature parameter.

Inherited from

AccessListEIP2930TxData.s

Defined in

types.ts:157


to

Optional to: AddressLike

The transaction's the address is sent to.

Inherited from

AccessListEIP2930TxData.to

Defined in

types.ts:132


type

Optional type: BNLike

The transaction type

Inherited from

AccessListEIP2930TxData.type

Defined in

types.ts:163


v

Optional v: BNLike

EC recovery ID.

Inherited from

AccessListEIP2930TxData.v

Defined in

types.ts:147


value

Optional value: BNLike

The amount of Ether sent.

Inherited from

AccessListEIP2930TxData.value

Defined in

types.ts:137