ethereumjs-monorepo

@ethereumjs/vm


@ethereumjs/vm / AfterTxEvent

Interface: AfterTxEvent

Defined in: vm/src/types.ts:493

Execution result of a transaction

Extends

Properties

accessList?

optional accessList: AccessList

Defined in: vm/src/types.ts:475

EIP-2930 access list generated for the tx (see reportAccessList option)

Inherited from

RunTxResult.accessList


amountSpent

amountSpent: bigint

Defined in: vm/src/types.ts:453

The amount of ether used by this transaction

Inherited from

RunTxResult.amountSpent


blobGasUsed?

optional blobGasUsed: bigint

Defined in: vm/src/types.ts:490

This is the blob gas units times the fee per blob gas for 4844 transactions

Inherited from

RunTxResult.blobGasUsed


bloom

bloom: Bloom

Defined in: vm/src/types.ts:448

Bloom filter resulted from transaction

Inherited from

RunTxResult.bloom


createdAddress?

optional createdAddress: Address

Defined in: evm/dist/esm/types.d.ts:333

Address of created account during transaction, if any

Inherited from

RunTxResult.createdAddress


execResult

execResult: ExecResult

Defined in: evm/dist/esm/types.d.ts:337

Contains the results from running the code, if any, as described in runCode

Inherited from

RunTxResult.execResult


gasRefund

gasRefund: bigint

Defined in: vm/src/types.ts:470

The amount of gas as that was refunded during the transaction (i.e. gasUsed = totalGasConsumed - gasRefund)

Inherited from

RunTxResult.gasRefund


minerValue

minerValue: bigint

Defined in: vm/src/types.ts:485

The value that accrues to the miner by this transaction

Inherited from

RunTxResult.minerValue


preimages?

optional preimages: Map<`0x${string}`, Uint8Array<ArrayBufferLike>>

Defined in: vm/src/types.ts:480

Preimages mapping of the touched accounts from the tx (see reportPreimages option)

Inherited from

RunTxResult.preimages


receipt

receipt: TxReceipt

Defined in: vm/src/types.ts:458

The tx receipt

Inherited from

RunTxResult.receipt


totalGasSpent

totalGasSpent: bigint

Defined in: vm/src/types.ts:465

The amount of gas used in this transaction, which is paid for This contains the gas units that have been used on execution, plus the upfront cost, which consists of calldata cost, intrinsic cost and optionally the access list costs

Inherited from

RunTxResult.totalGasSpent


transaction

transaction: TypedTransaction

Defined in: vm/src/types.ts:497

The transaction which just got finished