wallets-wrapper
Version:
How to install
15 lines (14 loc) • 502 B
TypeScript
import { Networks } from '../../../models';
import { GetAccountInfoResult, GetTrezorAccountInfo } from '../models';
export declare const getAccountInfo: (args: GetTrezorAccountInfo[]) => Promise<import("@trezor/connect-web").Unsuccessful | {
success: boolean;
payload: {
balance: number;
coin: import("../models").AllCoins;
address: string;
network?: Networks | undefined;
}[];
} | {
payload: GetAccountInfoResult[];
success: true;
}>;