Bitcoin Core  31.0.0
P2P Digital Currency
feerate.h
Go to the documentation of this file.
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-present The Bitcoin Core developers
3 // Distributed under the MIT software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 
6 #ifndef BITCOIN_POLICY_FEERATE_H
7 #define BITCOIN_POLICY_FEERATE_H
8 
9 #include <consensus/amount.h>
10 #include <serialize.h>
11 #include <util/feefrac.h>
12 #include <util/fees.h>
13 
14 
15 #include <cstdint>
16 #include <string>
17 #include <type_traits>
18 
19 const std::string CURRENCY_UNIT = "BTC"; // One formatted unit
20 const std::string CURRENCY_ATOM = "sat"; // One indivisible minimum value unit
21 
22 enum class FeeRateFormat {
23  BTC_KVB,
24  SAT_VB,
25 };
26 
31 class CFeeRate
32 {
33 private:
36 
37 public:
39  CFeeRate() = default;
40  template<std::integral I> // Disallow silent float -> int conversion
41  explicit CFeeRate(const I m_feerate_kvb) : m_feerate(FeePerVSize(m_feerate_kvb, 1000)) {}
42 
48  CFeeRate(const CAmount& nFeePaid, int32_t virtual_bytes);
49 
55  CAmount GetFee(int32_t virtual_bytes) const;
56 
57  FeePerVSize GetFeePerVSize() const { return m_feerate; }
58 
62  CAmount GetFeePerK() const { return CAmount(m_feerate.EvaluateFeeDown(1000)); }
63  friend std::weak_ordering operator<=>(const CFeeRate& a, const CFeeRate& b) noexcept
64  {
65  return FeeRateCompare(a.m_feerate, b.m_feerate);
66  }
67  friend bool operator==(const CFeeRate& a, const CFeeRate& b) noexcept
68  {
69  return FeeRateCompare(a.m_feerate, b.m_feerate) == std::weak_ordering::equivalent;
70  }
72  m_feerate = FeePerVSize(GetFeePerK() + a.GetFeePerK(), 1000);
73  return *this;
74  }
75  std::string ToString(FeeRateFormat fee_rate_format = FeeRateFormat::BTC_KVB) const;
76  friend CFeeRate operator*(const CFeeRate& f, int a) { return CFeeRate(a * f.m_feerate.fee, f.m_feerate.size); }
77  friend CFeeRate operator*(int a, const CFeeRate& f) { return CFeeRate(a * f.m_feerate.fee, f.m_feerate.size); }
78 
79  SERIALIZE_METHODS(CFeeRate, obj) { READWRITE(obj.m_feerate.fee, obj.m_feerate.size); }
80 };
81 
82 #endif // BITCOIN_POLICY_FEERATE_H
int64_t fee
Definition: feefrac.h:107
friend CFeeRate operator*(const CFeeRate &f, int a)
Definition: feerate.h:76
Use BTC/kvB fee rate unit.
SERIALIZE_METHODS(CFeeRate, obj)
Definition: feerate.h:79
int64_t CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
friend bool operator==(const CFeeRate &a, const CFeeRate &b) noexcept
Definition: feerate.h:67
FeePerVSize GetFeePerVSize() const
Definition: feerate.h:57
CFeeRate(const I m_feerate_kvb)
Definition: feerate.h:41
FeePerUnit< VSizeTag > FeePerVSize
Definition: feefrac.h:252
FeeRateFormat
Definition: feerate.h:22
const std::string CURRENCY_ATOM
Definition: feerate.h:20
CFeeRate & operator+=(const CFeeRate &a)
Definition: feerate.h:71
const std::string CURRENCY_UNIT
Definition: feerate.h:19
friend CFeeRate operator*(int a, const CFeeRate &f)
Definition: feerate.h:77
std::string ToString(FeeRateFormat fee_rate_format=FeeRateFormat::BTC_KVB) const
Definition: feerate.cpp:29
FeePerVSize m_feerate
Fee rate in sats/vB (satoshis per N virtualbytes)
Definition: feerate.h:35
int32_t size
Definition: feefrac.h:108
Use sat/vB fee rate unit.
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac...
Definition: feerate.h:31
CFeeRate()=default
Fee rate of 0 satoshis per 0 vB.
CAmount GetFee(int32_t virtual_bytes) const
Return the fee in satoshis for the given vsize in vbytes.
Definition: feerate.cpp:20
int64_t EvaluateFeeDown(int32_t at_size) const noexcept
Compute the fee for a given size at_size using this object&#39;s feerate, rounding down.
Definition: feefrac.h:221
#define READWRITE(...)
Definition: serialize.h:145
CAmount GetFeePerK() const
Return the fee in satoshis for a vsize of 1000 vbytes.
Definition: feerate.h:62