Expand description
Module containing a contract’s types and functions.
contract ModuleSingleton {
function isNode(address) external view returns (bool);
function getTargets() external view returns (uint256[] memory);
function owner() public view returns (address);
}
Modules§
- abi
- Contains dynamic ABI definitions for this contract.
Structs§
- Module
Singleton Instance - A
ModuleSingleton
instance. - getTargets
Call - Function with signature
getTargets()
and selector0x63fe3b56
. - getTargets
Return - Container type for the return parameters of the
getTargets()
function. - isNode
Call - Function with signature
isNode(address)
and selector0x01750152
. - isNode
Return - Container type for the return parameters of the
isNode(address)
function. - owner
Call - Function with signature
owner()
and selector0x8da5cb5b
. - owner
Return - Container type for the return parameters of the
owner()
function.
Enums§
- Module
Singleton Calls - Container for all the
ModuleSingleton
function calls.
Functions§
- new
- Creates a new wrapper around an on-chain
ModuleSingleton
contract instance.