@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
28 lines (27 loc) • 717 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Enumerations that represent the component types used in remote config
* {@link ComponentsDataWrapper}
*/
export declare 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 declare enum ConsensusNodeStates {
REQUESTED = "requested",
INITIALIZED = "initialized",
SETUP = "setup",
STARTED = "started",
FREEZED = "freezed",
STOPPED = "stopped"
}