Skip to content

Latest commit

 

History

History
114 lines (64 loc) · 2.34 KB

execresult.md

File metadata and controls

114 lines (64 loc) · 2.34 KB

ethereumjs-vm > ExecResult

Interface: ExecResult

Result of executing a call via the [[EVM]].

Hierarchy

ExecResult

Index

Properties


Properties

<Optional> exceptionError

● exceptionError: VmError

Defined in evm/evm.ts:47

Description of the exception, if any occured


<Optional> gas

● gas: BN

Defined in evm/evm.ts:51

Amount of gas left


<Optional> gasRefund

● gasRefund: BN

Defined in evm/evm.ts:67

Amount of gas to refund from deleting storage values


gasUsed

● gasUsed: BN

Defined in evm/evm.ts:55

Amount of gas the code used to run


<Optional> logs

● logs: any[]

Defined in evm/evm.ts:63

Array of logs that the contract emitted


returnValue

● returnValue: Buffer

Defined in evm/evm.ts:59

Return value from the contract


<Optional> runState

● runState: RunState

Defined in evm/evm.ts:43


<Optional> selfdestruct

● selfdestruct: undefined | object

Defined in evm/evm.ts:71

A map from the accounts that have self-destructed to the addresses to send their funds to