Expand description
Module containing a contract’s types and functions.
contract Host {
function balance(address account) public view returns (uint256) { <stmts> }
function extcodesizeOp(address account) public view returns (uint256) { <stmts> }
function extcodehashOp(address account) public view returns (bytes32) { <stmts> }
function blockhashOp(uint256 blockNumber) public view returns (bytes32) { <stmts> }
function sloadOp(uint256 slot) public view returns (uint256) { <stmts> }
function sstoreOp(uint256 slot, uint256 value) public { <stmts> }
function logOps() public { <stmts> }
function selfbalance() public view returns (uint256) { <stmts> }
}
Structs§
- balance
Call - Function with signature
balance(address)
and selector0xe3d670d7
. - balance
Return - Container type for the return parameters of the
balance(address)
function. - blockhash
OpCall - Function with signature
blockhashOp(uint256)
and selector0x29d793b9
. - blockhash
OpReturn - Container type for the return parameters of the
blockhashOp(uint256)
function. - extcodehash
OpCall - Function with signature
extcodehashOp(address)
and selector0xe42cf66b
. - extcodehash
OpReturn - Container type for the return parameters of the
extcodehashOp(address)
function. - extcodesize
OpCall - Function with signature
extcodesizeOp(address)
and selector0x5421a28a
. - extcodesize
OpReturn - Container type for the return parameters of the
extcodesizeOp(address)
function. - logOps
Call - Function with signature
logOps()
and selector0xe68d826f
. - logOps
Return - Container type for the return parameters of the
logOps()
function. - selfbalance
Call - Function with signature
selfbalance()
and selector0xbf8e7c1c
. - selfbalance
Return - Container type for the return parameters of the
selfbalance()
function. - sload
OpCall - Function with signature
sloadOp(uint256)
and selector0x1a62e422
. - sload
OpReturn - Container type for the return parameters of the
sloadOp(uint256)
function. - sstore
OpCall - Function with signature
sstoreOp(uint256,uint256)
and selector0x606b05dd
. - sstore
OpReturn - Container type for the return parameters of the
sstoreOp(uint256,uint256)
function.