referrerpolicy=no-referrer-when-downgrade

Module Callee

Source
Expand description

Module containing a contract’s types and functions.

contract Callee {
    uint public stored;
    function echo(uint _data) external pure returns (uint data) { <stmts> }
    function whoSender() external view returns (address) { <stmts> }
    function store(uint _data) external { <stmts> }
    function revert() public pure returns (uint256) { <stmts> }
    function invalid() public pure returns (uint256 result) { <stmts> }
    function stop() public pure returns (uint256 result) { <stmts> }
}

Structs§

echoCall
Function with signature echo(uint256) and selector 0x6279e43c.
echoReturn
Container type for the return parameters of the echo(uint256) function.
invalidCall
Function with signature invalid() and selector 0xbde9e40e.
invalidReturn
Container type for the return parameters of the invalid() function.
revertCall
Function with signature revert() and selector 0x7da3c3ab.
revertReturn
Container type for the return parameters of the revert() function.
stopCall
Function with signature stop() and selector 0x07da68f5.
stopReturn
Container type for the return parameters of the stop() function.
storeCall
Function with signature store(uint256) and selector 0x6057361d.
storeReturn
Container type for the return parameters of the store(uint256) function.
storedCall
Function with signature stored() and selector 0xe582dd31.
storedReturn
Container type for the return parameters of the stored() function.
whoSenderCall
Function with signature whoSender() and selector 0xca3e58fe.
whoSenderReturn
Container type for the return parameters of the whoSender() function.

Enums§

CalleeCalls
Container for all the Callee function calls.