Expand description
Module containing a contract’s types and functions.
interface IERC20 {
function balanceOf(address owner) external view returns (uint256);
}
Structs§
- A
IERC20
instance. - Function with signature
balanceOf(address)
and selector0x70a08231
. - Container type for the return parameters of the
balanceOf(address)
function.
Enums§
- Container for all the
IERC20
function calls.
Functions§
- Creates a new wrapper around an on-chain
IERC20
contract instance.