libnemo
Version:
Nano cryptocurrency wallet library.
16 lines (15 loc) • 446 B
TypeScript
import { Account } from '../account';
import { Rpc } from '../rpc';
import { Wallet } from '../wallet';
export type BlockInfo = {
blocks: {
[hash: string]: {
[p: string]: string;
} & {
contents: {
[p: string]: string;
};
};
};
};
export declare function _refresh(wallet: Wallet, rpc: Rpc | string | URL, from: number, to: number): Promise<Map<number, Account>>;