UNPKG

@funded-labs/plug-controller

Version:

Internet Computer Plug wallet's controller

12 lines (11 loc) 435 B
import { GetTransactionsResponse } from '../../../interfaces/transactions'; export declare const MILI_PER_SECOND = 1000000; interface Balance { value: string; decimals: number; error?: string; } export declare const getICPTransactions: (accountId: string) => Promise<GetTransactionsResponse>; export declare const getICPBalance: (accountId: string) => Promise<Balance>; declare const _default: {}; export default _default;