@ecash/lib
Version:
Library for eCash transaction building
9 lines (7 loc) • 360 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_LIMIT = 546;
/** Default fee per kB on the eCash network. */
export const DEFAULT_FEE_PER_KB = 1000;