UNPKG

@hashgraph/hedera-local

Version:

Developer tooling for running Local Hedera Network (Consensus + Mirror Nodes).

10 lines (7 loc) 199 B
// SPDX-License-Identifier: Apache-2.0 import { IPrivateKey } from './IPrivateKey'; export interface IAccountProps { balance: number; privateKey?: IPrivateKey; associatedTokens?: string[]; }