ecash-lib
Version:
Library for eCash transaction building
9 lines (7 loc) • 366 B
text/typescript
// 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.
/** Default dust limit on the eCash network. */
export const DEFAULT_DUST_SATS = 546n;
/** Default fee per kB on the eCash network. */
export const DEFAULT_FEE_SATS_PER_KB = 1000n;