Expand description
Module containing a contract’s types and functions.
interface IERC20LayoutProbe {
function balanceOf(address account) external view returns (uint256);
function allowance(address owner, address spender) external view returns (uint256);
}Structs§
- 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.
Enums§
- IERC20
Layout Probe Calls - Container for all the
IERC20LayoutProbefunction calls.