@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 537 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
import { type ClusterRef, type ClusterRefs, type DeploymentName, type EmailAddress, type NamespaceNameAsString, type Version } from './remote/types.js';
export interface DeploymentStructure {
clusters: ClusterRef[];
namespace: NamespaceNameAsString;
}
export type Deployments = Record<DeploymentName, DeploymentStructure>;
export interface LocalConfigData {
userEmailAddress: EmailAddress;
deployments: Deployments;
clusterRefs: ClusterRefs;
soloVersion: Version;
}