@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
13 lines (10 loc) • 426 B
text/typescript
// SPDX-License-Identifier: Apache-2.0
import {type NamespaceName} from '../../../../types/namespace/namespace-name.js';
import {type DeploymentStateSchema} from '../../../../data/schema/model/remote/deployment-state-schema.js';
export interface RemoteConfigValidatorApi {
validateComponents(
namespace: NamespaceName,
skipConsensusNodes: boolean,
state: Readonly<DeploymentStateSchema>,
): Promise<void>;
}