Sha256: d3f662a974a5a020c434f91c72926ea3ddfd22f93ed56259e864b2cd4aeef593

Contents?: true

Size: 642 Bytes

Versions: 2

Compression:

Stored size: 642 Bytes

Contents

import { TLong } from '../../interface';
import { Transaction, WithApiMixin } from '@waves/ts-types';
export default function <T extends Transaction<TLong> & WithApiMixin>(base: string, tx: T, options?: IWaitOptions): Promise<T>;
export default function <T extends Transaction<TLong> & WithApiMixin>(base: string, list: Array<T>, options?: IWaitOptions): Promise<Array<T>>;
export default function <T extends Transaction<TLong> & WithApiMixin>(base: string, tx: T | Array<T>, options?: IWaitOptions): Promise<T | Array<T>>;
export interface IWaitOptions {
    confirmations?: number;
    maxWaitTime?: number;
    requestInterval?: number;
}

Version data entries

2 entries across 1 versions & 1 rubygems

Version Path
waves_lib-0.1.0 js/node_modules/@waves/node-api-js/cjs/tools/transactions/wait.d.ts
waves_lib-0.1.0 js/node_modules/@waves/node-api-js/es/tools/transactions/wait.d.ts