Expand description
Generated by the following Solidity interface…
interface CreateResources {
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§
- Create
Resources Instance - A
CreateResources
instance. - IS_
SCRIPT Call - Function with signature
IS_SCRIPT()
and selector0xf8ccbf47
. - IS_
SCRIPT Return - Container type for the return parameters of the
IS_SCRIPT()
function. - runCall
- Function with signature
run()
and selector0xc0406226
. - runReturn
- Container type for the return parameters of the
run()
function. - setUp
Call - Function with signature
setUp()
and selector0x0a9254e4
. - setUp
Return - Container type for the return parameters of the
setUp()
function.
Enums§
- Create
Resources Calls - Container for all the
CreateResources
function calls.
Statics§
- BYTECODE
- The creation / init bytecode of the contract.
- DEPLOYED_
BYTECODE - The runtime bytecode of the contract, as deployed on the network.
Functions§
- deploy
- Deploys this contract using the given
provider
and constructor arguments, if any. - deploy_
builder - Creates a
RawCallBuilder
for deploying this contract using the givenprovider
and constructor arguments, if any. - new
- Creates a new wrapper around an on-chain
CreateResources
contract instance.