Expand description
Module containing a contract’s types and functions.
contract TransactionInfo {
function origin() public view returns (address) { <stmts> }
function gasprice() public view returns (uint256) { <stmts> }
function blobhash(uint256 index) public view returns (bytes32) { <stmts> }
}Structs§
- blobhash
Call - Function with signature
blobhash(uint256)and selector0x206e721c. - blobhash
Return - Container type for the return parameters of the
blobhash(uint256)function. - gasprice
Call - Function with signature
gasprice()and selector0x6ec232d3. - gasprice
Return - Container type for the return parameters of the
gasprice()function. - origin
Call - Function with signature
origin()and selector0x938b5f32. - origin
Return - Container type for the return parameters of the
origin()function.
Enums§
- Transaction
Info Calls - Container for all the
TransactionInfofunction calls.