@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
8 lines (7 loc) • 376 B
TypeScript
import { type ListrContext } from 'listr2';
import { type OneShotSingleDeployConfigClass } from './one-shot-single-deploy-config-class.js';
import { type CreatedPredefinedAccount } from './predefined-accounts.js';
export interface OneShotSingleDeployContext extends ListrContext {
config: OneShotSingleDeployConfigClass;
createdAccounts: CreatedPredefinedAccount[];
}