Set up Inverter Network SDK: Refer to the Quick Start guide for detailed instructions.
Deploy a Workflow: Refer to the Deploy a Workflow guide for detailed instructions.
( optional ) You can pass in a ModuleData typed object into the requestedModules constant's fields, this makes it so that you can work with your self managed inverter modules
// EXEMPLE MixedRequestedModules USAGEimporttype{ModuleData,MixedRequestedModules}from'@inverter-network/sdk'constAUT_Roles_v1={'<your_module_data>'}asconstsatisifiesModuleDataconstrequestedModules={fundingManager:'FM_DepositVault_v1',paymentProcessor:'PP_Simple_v1',authorizer:AUT_Roles_v1,}asconstsatisfiesMixedRequestedModules
Retrieving a Workflow
We strongly recommend passing in a readonly requestedModules since this ensures that your workflow response will be strongly typed. Also you will have to pass in a orchestratorAddress in to the query.
Parameters
requestedModules (required):
This parameter defines the modules which will be deployed.
useTags(optional):
This parameter is to optionally disable auto format parse for inputs and outputs (default true).