@ledgerhq/coin-celo
Version:
25 lines • 825 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;
}>, opts: Record<string, any>): Transaction[];
export default function makeCliTools(): {
options: {
name: string;
type: StringConstructor;
desc: string;
}[];
inferAccounts: typeof inferAccounts;
inferTransactions: typeof inferTransactions;
commands: {
celoValidatorGroups: {
args: never[];
job: () => import("rxjs").Observable<string>;
};
};
};
export {};
//# sourceMappingURL=cli-transaction.d.ts.map