Expand description
Module containing a contract’s types and functions.
contract IERC20 {
function balanceOf(address target) returns (uint256);
function decimals() returns (uint8);
function allowance(address owner, address spender) returns (uint256);
}Structs§
- IERC20
Instance - A
IERC20instance. - allowance
Call - Function with signature
allowance(address,address)and selector0xdd62ed3e. - allowance
Return - Container type for the return parameters of the
allowance(address,address)function. - balance
OfCall - Function with signature
balanceOf(address)and selector0x70a08231. - balance
OfReturn - Container type for the return parameters of the
balanceOf(address)function. - decimals
Call - Function with signature
decimals()and selector0x313ce567. - decimals
Return - Container type for the return parameters of the
decimals()function.
Enums§
- IERC20
Calls - Container for all the
IERC20function calls.