@ledgerhq/coin-stacks
Version:
Ledger Stacks Coin integration
15 lines • 557 B
TypeScript
import type { Account, AccountLike, AccountLikeArray } from "@ledgerhq/types-live";
import type { Transaction } from "../types";
declare function inferAccounts(account: Account): AccountLikeArray;
declare function inferTransactions(transactions: Array<{
account: AccountLike;
transaction: Transaction;
mainAccount: Account;
}>): Transaction[];
export default function makeCliTools(): {
options: never[];
inferAccounts: typeof inferAccounts;
inferTransactions: typeof inferTransactions;
};
export {};
//# sourceMappingURL=cli.d.ts.map