Expand description
Module containing a contract’s types and functions.
interface IERC20 {
function balanceOf(address owner) external view returns (uint256);
}Structs§
- IERC20
Instance - A
IERC20instance. - balance
OfCall - Function with signature
balanceOf(address)and selector0x70a08231. - balance
OfReturn - Container type for the return parameters of the
balanceOf(address)function.
Enums§
- IERC20
Calls - Container for all the
IERC20function calls.