@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
21 lines (20 loc) • 854 B
TypeScript
import { type CacheImageTemplateValuesStructure } from '../cache-image-template-values-structure.js';
export declare class CacheImageTemplateValues implements CacheImageTemplateValuesStructure {
readonly MIRROR_NODE_VERSION: string;
readonly BLOCK_NODE_VERSION: string;
readonly RELAY_VERSION: string;
readonly EXPLORER_VERSION: string;
readonly MINIO_OPERATOR_VERSION: string;
readonly CONSENSUS_NODE_VERSION: string;
constructor(mirrorNodeVersion: string, blockNodeVersion: string, relayVersion: string, explorerVersion: string, minioOperatorVersion: string, consensusNodeVersion: string);
/**
* Remove the 'v' prefix from the version string.
* ex. v0.1.0 -> 0.1.0
*/
private removeVPrefix;
/**
* Add the 'v' prefix if missing.
* ex. 7.1.1 -> v7.1.1
*/
private ensureVPrefix;
}