UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

30 lines (27 loc) 681 B
/** * SPDX-License-Identifier: Apache-2.0 */ /** * Enumerations that represent the component types used in remote config * {@link ComponentsDataWrapper} */ export enum ComponentType { ConsensusNode = 'consensusNodes', HaProxy = 'haProxies', EnvoyProxy = 'envoyProxies', MirrorNode = 'mirrorNodes', MirrorNodeExplorer = 'mirrorNodeExplorers', Relay = 'relays', } /** * Enumerations that represent the state of consensus node in remote config * {@link ConsensusNodeComponent} */ export enum ConsensusNodeStates { REQUESTED = 'requested', INITIALIZED = 'initialized', SETUP = 'setup', STARTED = 'started', FREEZED = 'freezed', STOPPED = 'stopped', }