@ledgerhq/coin-near
Version:
16 lines • 510 B
TypeScript
import { Transaction } from "./types";
import type { AccountLike } from "@ledgerhq/types-live";
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;
}[];
inferTransactions: typeof inferTransactions;
};
export {};
//# sourceMappingURL=cli-transaction.d.ts.map