Expand description
Module containing a contract’s types and functions.
contract MockToken {
function mint(address account, uint256 amount) public { <stmts> }
function buy(address token, uint256 amount) public { <stmts> }
}Structs§
- buyCall
- Function with signature
buy(address,uint256)and selector0xcce7ec13. - buyReturn
- Container type for the return parameters of the
buy(address,uint256)function. - mint
Call - Function with signature
mint(address,uint256)and selector0x40c10f19. - mint
Return - Container type for the return parameters of the
mint(address,uint256)function.
Enums§
- Mock
Token Calls - Container for all the
MockTokenfunction calls.