Expand description
Module containing a contract’s types and functions.
interface ICurveCommon {
function coins(uint256) external view returns (bytes);
function balances(uint256) external view returns (uint256);
function get_balances() external view returns (bytes);
}
Modules§
- Contains dynamic ABI definitions for this contract.
Structs§
- A
ICurveCommon
instance. - Function with signature
balances(uint256)
and selector0x4903b0d1
. - Container type for the return parameters of the
balances(uint256)
function. - Function with signature
coins(uint256)
and selector0xc6610657
. - Container type for the return parameters of the
coins(uint256)
function. - Function with signature
get_balances()
and selector0x14f05979
. - Container type for the return parameters of the
get_balances()
function.
Enums§
- Container for all the
ICurveCommon
function calls.
Functions§
- Creates a new wrapper around an on-chain
ICurveCommon
contract instance.