UNPKG

@ledgerhq/coin-icon

Version:
14 lines 454 B
import { BigNumber } from "bignumber.js"; import type { IconAccount, Transaction } from "./types"; /** * Fetch the transaction fees for a transaction * * @param {IconAccount} account * @param {Transaction} transaction */ declare const getEstimatedFees: ({ account, transaction, }: { account: IconAccount; transaction: Transaction; }) => Promise<BigNumber>; export default getEstimatedFees; //# sourceMappingURL=getFeesForTransaction.d.ts.map