@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 535 B
TypeScript
import { type NamespaceName } from '../../../types/namespace/namespace-name.js';
import { type ComponentData, type Context, type DeploymentName, type Optional } from '../../../types/index.js';
export interface NodeConnectionsConfigClass {
deployment: DeploymentName;
componentsData: ComponentData[];
context: Context;
namespace: NamespaceName;
newAccount: Optional<{
accountId: string;
privateKey: string;
publicKey: string;
balance: number;
accountAlias?: string;
}>;
}