UNPKG

@ledgerhq/live-common

Version:
27 lines 1.03 kB
import type { Account, Bridge } from "@ledgerhq/types-live"; import { TransactionStatus, Transaction } from "@ledgerhq/coin-canton/types"; import { Resolver } from "../../hw/getAddress/types"; declare const bridge: Bridge<Transaction, Account, TransactionStatus>; declare const resolver: Resolver; declare const cliTools: { options: ({ name: string; type: StringConstructor; desc: string; } | { name: string; type: NumberConstructor; desc: string; })[]; inferTransactions: (transactions: { account: import("@ledgerhq/types-live").AccountLike; transaction: Transaction; }[], opts: { tag?: number | null | undefined; fee?: string | undefined; }, { inferAmount, }: { inferAmount: (account: import("@ledgerhq/types-live").AccountLike, fee?: string | undefined) => import("bignumber.js").BigNumber | null | undefined; }) => Transaction[]; }; export { bridge, cliTools, resolver }; //# sourceMappingURL=setup.d.ts.map