UNPKG

@ledgerhq/coin-stellar

Version:
12 lines 458 B
// SPDX-FileCopyrightText: © 2026 LEDGER SAS // SPDX-License-Identifier: Apache-2.0 import { fetchBaseFee } from '../network'; /** * Estimate the fees for one transaction * @see {@link https://developers.stellar.org/docs/learn/fundamentals/fees-resource-limits-metering#inclusion-fee} */ export async function estimateFees() { const baseFee = await fetchBaseFee(); return BigInt(baseFee.recommendedFee); } //# sourceMappingURL=estimateFees.js.map