Skip to content

Latest commit

 

History

History
249 lines (132 loc) · 5.76 KB

FeeMarketEIP1559TxData.md

File metadata and controls

249 lines (132 loc) · 5.76 KB

@ethereumjs/tx / FeeMarketEIP1559TxData

Interface: FeeMarketEIP1559TxData

FeeMarketEIP1559Transaction data.

Hierarchy

Table of contents

Properties

Properties

accessList

Optional accessList: null | AccessListBytes | AccessList

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

Inherited from

AccessListEIP2930TxData.accessList

Defined in

tx/src/types.ts:303


chainId

Optional chainId: BigIntLike

The transaction's chain ID

Inherited from

AccessListEIP2930TxData.chainId

Defined in

tx/src/types.ts:298


data

Optional data: BytesLike

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

Inherited from

AccessListEIP2930TxData.data

Defined in

tx/src/types.ts:267


gasLimit

Optional gasLimit: BigIntLike

The transaction's gas limit.

Inherited from

AccessListEIP2930TxData.gasLimit

Defined in

tx/src/types.ts:252


gasPrice

Optional gasPrice: null

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

tx/src/types.ts:314


maxFeePerGas

Optional maxFeePerGas: BigIntLike

The maximum total fee

Defined in

tx/src/types.ts:322


maxPriorityFeePerGas

Optional maxPriorityFeePerGas: BigIntLike

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

Defined in

tx/src/types.ts:318


nonce

Optional nonce: BigIntLike

The transaction's nonce.

Inherited from

AccessListEIP2930TxData.nonce

Defined in

tx/src/types.ts:242


r

Optional r: BigIntLike

EC signature parameter.

Inherited from

AccessListEIP2930TxData.r

Defined in

tx/src/types.ts:277


s

Optional s: BigIntLike

EC signature parameter.

Inherited from

AccessListEIP2930TxData.s

Defined in

tx/src/types.ts:282


to

Optional to: AddressLike

The transaction's the address is sent to.

Inherited from

AccessListEIP2930TxData.to

Defined in

tx/src/types.ts:257


type

Optional type: BigIntLike

The transaction type

Inherited from

AccessListEIP2930TxData.type

Defined in

tx/src/types.ts:288


v

Optional v: BigIntLike

EC recovery ID.

Inherited from

AccessListEIP2930TxData.v

Defined in

tx/src/types.ts:272


value

Optional value: BigIntLike

The amount of Ether sent.

Inherited from

AccessListEIP2930TxData.value

Defined in

tx/src/types.ts:262