@ledgerhq/coin-icon
Version: 
Ledger Icon Coin integration
16 lines • 512 B
TypeScript
import type { AccountLike } from "@ledgerhq/types-live";
import type { Transaction } from "./types";
declare function inferTransactions(transactions: Array<{
    account: AccountLike;
    transaction: Transaction;
}>, opts: Record<string, any>): Transaction[];
export default function makeCliTools(): {
    options: {
        name: string;
        type: StringConstructor;
        desc: string;
    }[];
    inferTransactions: typeof inferTransactions;
};
export {};
//# sourceMappingURL=cli-transaction.d.ts.map