UNPKG

@hashgraph/solo

Version:

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

43 lines (42 loc) 776 B
/** * SPDX-License-Identifier: Apache-2.0 */ export declare enum NodeStatusCodes { NO_VALUE = 0, STARTING_UP = 1, ACTIVE = 2, BEHIND = 4, FREEZING = 5, FREEZE_COMPLETE = 6, REPLAYING_EVENTS = 7, OBSERVING = 8, CHECKING = 9, RECONNECT_COMPLETE = 10, CATASTROPHIC_FAILURE = 11 } export declare const NodeStatusEnums: { 0: string; 1: string; 2: string; 4: string; 5: string; 6: string; 7: string; 8: string; 9: string; 10: string; 11: string; }; /** * - GRPC - Represents HAProxy Proxy * - GRPC_WEB - Represent Envoy Proxy */ export declare enum GrpcProxyTlsEnums { GRPC = 0, GRPC_WEB = 1 } export declare enum NodeSubcommandType { ADD = 0, DELETE = 1, UPDATE = 2 }