@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
19 lines (14 loc) • 397 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {Exclude, Expose} from 'class-transformer';
import os from 'node:os';
()
export class UserIdentitySchema {
()
public name: string;
()
public hostname: string;
public constructor(name?: string, hostname?: string) {
this.name = name ?? os.userInfo().username;
this.hostname = hostname ?? os.hostname();
}
}