UNPKG

@hashgraph/solo

Version:

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

41 lines (40 loc) 925 B
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: { readonly 0: "NO_VALUE"; readonly 1: "STARTING_UP"; readonly 2: "ACTIVE"; readonly 4: "BEHIND"; readonly 5: "FREEZING"; readonly 6: "FREEZE_COMPLETE"; readonly 7: "REPLAYING_EVENTS"; readonly 8: "OBSERVING"; readonly 9: "CHECKING"; readonly 10: "RECONNECT_COMPLETE"; readonly 11: "CATASTROPHIC_FAILURE"; }; /** * - GRPC - Represents HAProxy Proxy * - GRPC_WEB - Represent Envoy Proxy */ export declare enum GrpcProxyTlsEnums { GRPC = 0, GRPC_WEB = 1 } export declare enum NodeSubcommandType { ADD = 0, DESTROY = 1, UPDATE = 2, START = 3 }