UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

24 lines 724 B
/** * SPDX-License-Identifier: Apache-2.0 */ export class ConsensusNode { name; nodeId; namespace; cluster; context; dnsBaseDomain; dnsConsensusNodePattern; fullyQualifiedDomainName; constructor(name, nodeId, namespace, cluster, context, dnsBaseDomain, dnsConsensusNodePattern, fullyQualifiedDomainName) { this.name = name; this.nodeId = nodeId; this.namespace = namespace; this.cluster = cluster; this.context = context; this.dnsBaseDomain = dnsBaseDomain; this.dnsConsensusNodePattern = dnsConsensusNodePattern; this.fullyQualifiedDomainName = fullyQualifiedDomainName; } } //# sourceMappingURL=consensus_node.js.map