UNPKG

@hashgraph/solo

Version:

An opinionated CLI tool to deploy and manage private Hedera Networks.

15 lines (14 loc) 585 B
import { type Facade } from '../../facade/facade.js'; import { type TssSchema } from '../../../../data/schema/model/solo/tss-schema.js'; import { Wraps } from './wraps.js'; export declare class Tss implements Facade<TssSchema> { readonly encapsulatedObject: TssSchema; private readonly _wraps; constructor(encapsulatedObject: TssSchema); get messageSizeSoftLimitBytes(): number; get messageSizeHardLimitBytes(): number; get timeoutAfterReadySeconds(): number; get readyMaxAttempts(): number; get readyBackoffSeconds(): number; get wraps(): Wraps; }