referrerpolicy=no-referrer-when-downgrade

Module TransactionInfo

Source
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§

blobhashCall
Function with signature blobhash(uint256) and selector 0x206e721c.
blobhashReturn
Container type for the return parameters of the blobhash(uint256) function.
gaspriceCall
Function with signature gasprice() and selector 0x6ec232d3.
gaspriceReturn
Container type for the return parameters of the gasprice() function.
originCall
Function with signature origin() and selector 0x938b5f32.
originReturn
Container type for the return parameters of the origin() function.

Enums§

TransactionInfoCalls
Container for all the TransactionInfo function calls.