UNPKG

@hashgraph/solo

Version:

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

48 lines (47 loc) 2.83 kB
import { type Version } from './src/types/index.js'; import { SemanticVersion } from './src/business/utils/semantic-version.js'; /** * This file should only contain versions for dependencies and the function to get the Solo version. */ export declare const HELM_VERSION: string; export declare const KIND_VERSION: string; export declare const PODMAN_VERSION: string; export declare const VFKIT_VERSION: string; export declare const GVPROXY_VERSION: string; export declare const KUBECTL_VERSION: string; export declare const CRANE_VERSION: string; export declare const SOLO_CHART_VERSION: string; export declare const HEDERA_PLATFORM_VERSION: string; export declare const S6_NODE_IMAGE_VERSION: string; export declare const MIRROR_NODE_VERSION: string; export declare const EXPLORER_VERSION: string; export declare const HEDERA_JSON_RPC_RELAY_VERSION: string; export declare const INGRESS_CONTROLLER_VERSION: string; export declare const BLOCK_NODE_VERSION: string; export declare const NETWORK_LOAD_GENERATOR_CHART_VERSION: string; export declare const MINIO_OPERATOR_VERSION: string; export declare const METRICS_SERVER_VERSION: string; export declare const PROMETHEUS_STACK_VERSION: string; export declare const GRAFANA_AGENT_VERSION: string; export declare const GRAFANA_PODLOGS_CRD_VERSION: string; export declare const PROMETHEUS_OPERATOR_CRDS_VERSION: string; export declare const REDIS_IMAGE_VERSION: string; export declare const REDIS_SENTINEL_IMAGE_VERSION: string; export declare const SOLO_CHART_EDGE_VERSION: string; export declare const HEDERA_PLATFORM_EDGE_VERSION: string; export declare const MIRROR_NODE_EDGE_VERSION: string; export declare const EXPLORER_EDGE_VERSION: string; export declare const HEDERA_JSON_RPC_RELAY_EDGE_VERSION: string; export declare const BLOCK_NODE_EDGE_VERSION: string; export declare const MINIMUM_HIERO_PLATFORM_VERSION_FOR_BLOCK_NODE_LEGACY_RELEASE: string; export declare const MINIMUM_HIERO_BLOCK_NODE_VERSION_FOR_NEW_LIVENESS_CHECK_PORT: SemanticVersion<string>; export declare const MINIMUM_HIERO_PLATFORM_VERSION_FOR_BLOCK_NODE: string; export declare const MINIMUM_HIERO_PLATFORM_VERSION_FOR_GRPC_WEB_ENDPOINTS: string; export declare const MINIMUM_HIERO_CONSENSUS_NODE_VERSION_FOR_LEGACY_PORT_NAME_FOR_BLOCK_NODES_JSON_FILE: string; export declare const LAST_HIERO_CONSENSUS_NODE_VERSION_NEED_CONFIG_TXT: string; export declare const MEMORY_ENHANCEMENTS_MIRROR_NODE_VERSION: string; export declare const MINIMUM_HIERO_PLATFORM_VERSION_FOR_TSS: string; export declare const MINIMUM_BLOCK_NODE_CHART_VERSION_FOR_MIRROR_NODE_INTEGRATION: string; export declare const MINIMUM_MIRROR_NODE_CHART_VERSION_FOR_MIRROR_NODE_INTEGRATION: string; export declare function needsConfigTxtForConsensusVersion(releaseTag?: string): boolean; export declare function getSoloVersion(): Version;