@ledgerhq/coin-cardano
Version:
Ledger Cardano Coin integration
18 lines • 671 B
TypeScript
import { Account, AccountLike, TokenAccount } from "@ledgerhq/types-live";
import { Transaction } from "./types";
declare function inferAccounts(account: Account, opts: Record<string, any>): Account[] | TokenAccount[];
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;
}[];
inferAccounts: typeof inferAccounts;
inferTransactions: typeof inferTransactions;
};
export {};
//# sourceMappingURL=cli-transaction.d.ts.map