@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
11 lines (10 loc) • 489 B
TypeScript
import { WrapsSchema } from './wraps-schema.js';
export declare class TssSchema {
messageSizeSoftLimitBytes: number;
messageSizeHardLimitBytes: number;
timeoutAfterReadySeconds: number;
readyMaxAttempts: number;
readyBackoffSeconds: number;
wraps: WrapsSchema;
constructor(messageSizeSoftLimitBytes?: number, messageSizeHardLimitBytes?: number, timeoutAfterReadySeconds?: number, readyMaxAttempts?: number, readyBackoffSeconds?: number, wraps?: WrapsSchema);
}