Details for setup will be determined in the implementation.

interface OrchestrationGovernor {
    registerChain: ((chainName, info, methods?) => Promise<void>);
}

Properties

Properties

registerChain: ((chainName, info, methods?) => Promise<void>)

Type declaration

    • (chainName, info, methods?): Promise<void>
    • Parameters

      • chainName: string
      • info: ChainInfo
      • Optional methods: Record<string, any>

      Returns Promise<void>