Expand description
Module containing a contract’s types and functions.
contract HostEvmOnly {
function selfdestructOp(address recipient) public { <stmts> }
function extcodecopyOp(address account, uint256 offset, uint256 size) public view returns (bytes memory code) { <stmts> }
}
Structs§
- extcodecopy
OpCall - Function with signature
extcodecopyOp(address,uint256,uint256)
and selector0x7cdf8a54
. - extcodecopy
OpReturn - Container type for the return parameters of the
extcodecopyOp(address,uint256,uint256)
function. - selfdestruct
OpCall - Function with signature
selfdestructOp(address)
and selector0x99c4ffcb
. - selfdestruct
OpReturn - Container type for the return parameters of the
selfdestructOp(address)
function.
Enums§
- Host
EvmOnly Calls - Container for all the
HostEvmOnly
function calls.