@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
18 lines (17 loc) • 576 B
TypeScript
import { type NodeAddConfigClass } from './node-add-config-class.js';
import { type Long, type PrivateKey, type ServiceEndpoint } from '@hiero-ledger/sdk';
import { type NodeAlias } from '../../../types/aliases.js';
export interface NodeAddContext {
config: NodeAddConfigClass;
adminKey: PrivateKey;
newNode: {
accountId: string;
name: NodeAlias;
};
maxNum: Long;
gossipEndpoints: ServiceEndpoint[];
grpcServiceEndpoints: ServiceEndpoint[];
signingCertDer: Uint8Array;
tlsCertHash: Uint8Array;
upgradeZipHash: string;
}