Module brontes_pricing::protocols::uniswap_v2::IErc20
source · Expand description
Module containing a contract’s types and functions.
interface IErc20 {
function balanceOf(address account) external view returns (uint256);
function decimals() external view returns (uint8);
}
Structs§
- Function with signature
balanceOf(address)and selector0x70a08231. - Container type for the return parameters of the
balanceOf(address)function. - Function with signature
decimals()and selector0x313ce567. - Container type for the return parameters of the
decimals()function.
Enums§
- Container for all the
IErc20function calls.