UNPKG

@hashgraph/solo

Version:

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

23 lines (17 loc) 468 B
// SPDX-License-Identifier: Apache-2.0 import {Exclude, Expose} from 'class-transformer'; import {type ComponentId} from '../../../../../types/index.js'; @Exclude() export class ExternalBlockNodeStateSchema { @Expose() public id: number; @Expose() public address: string; @Expose() public port: number; public constructor(id?: ComponentId, address?: string, port?: number) { this.id = id; this.address = address; this.port = port; } }