@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
14 lines (11 loc) • 412 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type ClusterReferenceName} from '../../../types/index.js';
import {type UserIdentitySchema} from '../../../data/schema/model/common/user-identity-schema.js';
export interface ClusterReferenceConnectConfigClass {
cacheDir: string;
devMode: boolean;
quiet: boolean;
userIdentity: UserIdentitySchema;
clusterRef: ClusterReferenceName;
context: string;
}