@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
15 lines (14 loc) • 521 B
TypeScript
import { type NodeId } from '../../types/aliases.js';
import { type ServiceEndpoint } from '../../types/index.js';
export declare abstract class GenesisNetworkDataWrapper {
readonly nodeId: NodeId;
gossipEndpoint: ServiceEndpoint[];
weight: number;
gossipCaCertificate: string;
protected constructor(nodeId: NodeId);
/**
* @param fqdnOrIpAddress - a fully qualified domain name or IP v4 address
* @param port
*/
addGossipEndpoint(fqdnOrIpAddress: string, port: number): void;
}