Expand description
Generated by the following Solidity interface…
interface UpdateOperators {
function IS_SCRIPT() external view returns (bool);
function run() external;
function setUp() external;
}
…which was generated by the following JSON ABI:
[
{
"type": "function",
"name": "IS_SCRIPT",
"inputs": [],
"outputs": [
{
"name": "",
"type": "bool",
"internalType": "bool"
}
],
"stateMutability": "view"
},
{
"type": "function",
"name": "run",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
},
{
"type": "function",
"name": "setUp",
"inputs": [],
"outputs": [],
"stateMutability": "nonpayable"
}
]
Structs§
- Function with signature
IS_SCRIPT()
and selector0xf8ccbf47
.solidity function IS_SCRIPT() external view returns (bool);
- Container type for the return parameters of the
IS_SCRIPT()
function. - A
UpdateOperators
instance. - Function with signature
run()
and selector0xc0406226
.solidity function run() external;
- Container type for the return parameters of the
run()
function. - Function with signature
setUp()
and selector0x0a9254e4
.solidity function setUp() external;
- Container type for the return parameters of the
setUp()
function.
Enums§
- Container for all the
UpdateOperators
function calls.
Statics§
- The creation / init bytecode of the contract.
- The runtime bytecode of the contract, as deployed on the network.
Functions§
- Deploys this contract using the given
provider
and constructor arguments, if any. - Creates a
RawCallBuilder
for deploying this contract using the givenprovider
and constructor arguments, if any. - Creates a new wrapper around an on-chain
UpdateOperators
contract instance.