@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines (14 loc) • 553 B
TypeScript
/**
* SPDX-License-Identifier: Apache-2.0
*/
export declare class ConsensusNode {
readonly name: string;
readonly nodeId: number;
readonly namespace: string;
readonly cluster: string;
readonly context: string;
readonly dnsBaseDomain: string;
readonly dnsConsensusNodePattern: string;
readonly fullyQualifiedDomainName: string;
constructor(name: string, nodeId: number, namespace: string, cluster: string, context: string, dnsBaseDomain: string, dnsConsensusNodePattern: string, fullyQualifiedDomainName: string);
}