Module IERC20

Source
Expand description

Module containing a contract’s types and functions.

interface IERC20 {
    function balanceOf(address owner) external view returns (uint256);
}

Structs§

IERC20Instance
A IERC20 instance.
balanceOfCall
Function with signature balanceOf(address) and selector 0x70a08231.
balanceOfReturn
Container type for the return parameters of the balanceOf(address) function.

Enums§

IERC20Calls
Container for all the IERC20 function calls.

Functions§

new
Creates a new wrapper around an on-chain IERC20 contract instance.