@ethereumjs/evm / EVMRunCodeOpts
Defined in: types.ts:103
EVMRunOpts
optional
blobVersionedHashes:`0x${string}`
[]
Defined in: types.ts:100
Versioned hashes for each blob in a blob transaction
EVMRunOpts.blobVersionedHashes
optional
block:Block
Defined in: types.ts:52
The block
the tx
belongs to. If omitted a default blank block will be used.
EVMRunOpts.block
optional
caller:Address
Defined in: types.ts:64
The address that ran this code (msg.sender
). Defaults to the zero address.
EVMRunOpts.caller
optional
code:Uint8Array
<ArrayBufferLike
>
Defined in: types.ts:68
The EVM code to run.
EVMRunOpts.code
optional
data:Uint8Array
<ArrayBufferLike
>
Defined in: types.ts:72
The input data.
EVMRunOpts.data
optional
depth:number
Defined in: types.ts:84
The call depth. Defaults to 0
EVMRunOpts.depth
optional
gasLimit:bigint
Defined in: types.ts:76
The gas limit for the call. Defaults to 16777215
(0xffffff
)
EVMRunOpts.gasLimit
optional
gasPrice:bigint
Defined in: types.ts:56
The gas price for the call. Defaults to 0
EVMRunOpts.gasPrice
optional
isStatic:boolean
Defined in: types.ts:88
If the call should be executed statically. Defaults to false.
EVMRunOpts.isStatic
optional
origin:Address
Defined in: types.ts:60
The address where the call originated from. Defaults to the zero address.
EVMRunOpts.origin
optional
pc:number
Defined in: types.ts:107
optional
selfdestruct:Set
<`0x${string}`
>
Defined in: types.ts:92
Addresses to selfdestruct. Defaults to the empty set.
EVMRunOpts.selfdestruct
optional
to:Address
Defined in: types.ts:96
The address of the account that is executing this code (address(this)
). Defaults to the zero address.
EVMRunOpts.to
optional
value:bigint
Defined in: types.ts:80
The value in ether that is being sent to opts.address
. Defaults to 0
EVMRunOpts.value