@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
10 lines (9 loc) • 442 B
TypeScript
import { type DeploymentName } from '../../types/index.js';
import { type Deployment } from '../../business/runtime-state/config/local/deployment.js';
import { type RemoteConfigStructure } from '../../data/schema/model/remote/interfaces/remote-config-structure.js';
export interface OneShotInfoContext {
deploymentName: DeploymentName;
clusterConnected: boolean;
deployment: Deployment;
remoteConfig: RemoteConfigStructure;
}