UNPKG

@ledgerhq/coin-near

Version:
14 lines 605 B
import { updateTransaction } from "@ledgerhq/ledger-wallet-framework/bridge/jsHelpers"; import estimateMaxSpendable from "./estimateMaxSpendable"; import getEstimatedFees from "./getFeesForTransaction"; export const prepareTransaction = async (account, transaction) => { const amount = transaction.useAllAmount ? await estimateMaxSpendable({ account, transaction, }) : transaction.amount; const fees = await getEstimatedFees(transaction); return updateTransaction(transaction, { fees, amount }); }; //# sourceMappingURL=prepareTransaction.js.map