@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
16 lines (15 loc) • 776 B
TypeScript
import { BaseCommandTest } from './base-command-test.js';
import { type NodeAlias } from '../../../../src/types/aliases.js';
export declare class NodeUpdateTest extends BaseCommandTest {
static soloNodeUpdatePrepareArgv(deployment: string, outputDirectory: string, cacheDirectory: string, options: {
nodeAlias: NodeAlias;
newAdminKey: string;
newAccountNumber: string;
tlsPublicKey: string;
tlsPrivateKey: string;
gossipPublicKey: string;
gossipPrivateKey: string;
}): string[];
static soloNodeUpdateSubmitArgv(deployment: string, inputDirectory: string, cacheDirectory: string): string[];
static soloNodeUpdateExecuteArgv(deployment: string, inputDirectory: string, cacheDirectory: string): string[];
}