@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (16 loc) • 540 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
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;
}>;
}