@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
23 lines (17 loc) • 468 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {Exclude, Expose} from 'class-transformer';
import {type ComponentId} from '../../../../../types/index.js';
()
export class ExternalBlockNodeStateSchema {
()
public id: number;
()
public address: string;
()
public port: number;
public constructor(id?: ComponentId, address?: string, port?: number) {
this.id = id;
this.address = address;
this.port = port;
}
}