Skip to content

Latest commit

 

History

History
131 lines (70 loc) · 3.54 KB

runtx.aftertxevent.md

File metadata and controls

131 lines (70 loc) · 3.54 KB

@ethereumjs/vm / runTx / AfterTxEvent

Interface: AfterTxEvent

runTx.AfterTxEvent

Hierarchy

Table of contents

Properties

Properties

accessList

Optional accessList: AccessList

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

Inherited from: RunTxResult.accessList

Defined in: runTx.ts:95


amountSpent

amountSpent: BN

The amount of ether used by this transaction

Inherited from: RunTxResult.amountSpent

Defined in: runTx.ts:80


bloom

bloom: default

Bloom filter resulted from transaction

Inherited from: RunTxResult.bloom

Defined in: runTx.ts:75


createdAddress

Optional createdAddress: Address

Address of created account durint transaction, if any

Inherited from: RunTxResult.createdAddress

Defined in: evm/evm.ts:31


execResult

execResult: ExecResult

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

Inherited from: RunTxResult.execResult

Defined in: evm/evm.ts:35


gasRefund

Optional gasRefund: BN

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

Inherited from: RunTxResult.gasRefund

Defined in: runTx.ts:90


gasUsed

gasUsed: BN

Amount of gas used by the transaction

Inherited from: RunTxResult.gasUsed

Defined in: evm/evm.ts:27


receipt

receipt: TxReceipt

The tx receipt

Inherited from: RunTxResult.receipt

Defined in: runTx.ts:85


transaction

transaction: TypedTransaction

The transaction which just got finished

Defined in: runTx.ts:102