ecash-lib
Version:
Library for eCash transaction building
11 lines • 536 B
JavaScript
;
// Copyright (c) 2024 The Bitcoin developers
// Distributed under the MIT software license, see the accompanying
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
Object.defineProperty(exports, "__esModule", { value: true });
exports.DEFAULT_FEE_SATS_PER_KB = exports.DEFAULT_DUST_SATS = void 0;
/** Default dust limit on the eCash network. */
exports.DEFAULT_DUST_SATS = 546n;
/** Default fee per kB on the eCash network. */
exports.DEFAULT_FEE_SATS_PER_KB = 1000n;
//# sourceMappingURL=consts.js.map