@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
30 lines • 1.14 kB
JavaScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
/**
* Enumerations that represent the component types used in remote config
* {@link ComponentsDataWrapper}
*/
export var ComponentType;
(function (ComponentType) {
ComponentType["ConsensusNode"] = "consensusNodes";
ComponentType["HaProxy"] = "haProxies";
ComponentType["EnvoyProxy"] = "envoyProxies";
ComponentType["MirrorNode"] = "mirrorNodes";
ComponentType["MirrorNodeExplorer"] = "mirrorNodeExplorers";
ComponentType["Relay"] = "relays";
})(ComponentType || (ComponentType = {}));
/**
* Enumerations that represent the state of consensus node in remote config
* {@link ConsensusNodeComponent}
*/
export var ConsensusNodeStates;
(function (ConsensusNodeStates) {
ConsensusNodeStates["REQUESTED"] = "requested";
ConsensusNodeStates["INITIALIZED"] = "initialized";
ConsensusNodeStates["SETUP"] = "setup";
ConsensusNodeStates["STARTED"] = "started";
ConsensusNodeStates["FREEZED"] = "freezed";
ConsensusNodeStates["STOPPED"] = "stopped";
})(ConsensusNodeStates || (ConsensusNodeStates = {}));
//# sourceMappingURL=enumerations.js.map