| 123456789101112131415161718 |
- import { Storage } from './storage';
- import { IWebClient } from './webclient';
- export declare class BankClient {
- private urlBase;
- private storage;
- private webClient;
- private privateKey;
- private bootstrapPromise;
- private bootstrapResult;
- constructor(urlBase: string, storage: Storage, webClient: IWebClient);
- getPub(): Promise<string>;
- bootstrap(): any;
- getNonce(): Promise<number>;
- getBalance(): Promise<object>;
- private getPriv;
- private makePlaintextPayload;
- }
|