@ledgerhq/coin-mina
Version:
18 lines • 659 B
TypeScript
import type { Account, AccountLike, AccountLikeArray } from "@ledgerhq/types-live";
import type { Transaction } from "../types/common";
declare function inferAccounts(account: Account): AccountLikeArray;
declare function inferTransactions(transactions: Array<{
account: AccountLike;
transaction: Transaction;
}>, opts: Record<string, string>): 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