UNPKG

@iexec/iapp

Version:

A CLI to guide you through the process of building an iExec iApp

13 lines (12 loc) 294 B
import type { Spinner } from './spinner.js'; import { BN, IExec } from 'iexec'; export declare function ensureBalances({ spinner, iexec, nRlcMin, weiMin, }: { spinner: Spinner; iexec: IExec; nRlcMin?: BN; weiMin?: BN; }): Promise<{ wei: BN; nRLC: BN; stake: BN; }>;