Bitcoin Core 30.99.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
19const std::string CURRENCY_UNIT = "BTC"; // One formatted unit
20const std::string CURRENCY_ATOM = "sat"; // One indivisible minimum value unit
21
22enum class FeeRateFormat {
23 BTC_KVB,
24 SAT_VB,
25};
26
32{
33private:
36
37public:
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
58
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 }
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 CAmount
Amount in satoshis (Can be negative)
Definition: amount.h:12
Fee rate in satoshis per virtualbyte: CAmount / vB the feerate is represented internally as FeeFrac.
Definition: feerate.h:32
std::string ToString(FeeRateFormat fee_rate_format=FeeRateFormat::BTC_KVB) const
Definition: feerate.cpp:29
friend std::weak_ordering operator<=>(const CFeeRate &a, const CFeeRate &b) noexcept
Definition: feerate.h:63
CFeeRate()=default
Fee rate of 0 satoshis per 0 vB.
friend bool operator==(const CFeeRate &a, const CFeeRate &b) noexcept
Definition: feerate.h:67
CFeeRate(const I m_feerate_kvb)
Definition: feerate.h:41
friend CFeeRate operator*(int a, const CFeeRate &f)
Definition: feerate.h:77
FeePerVSize m_feerate
Fee rate in sats/vB (satoshis per N virtualbytes)
Definition: feerate.h:35
SERIALIZE_METHODS(CFeeRate, obj)
Definition: feerate.h:79
FeePerVSize GetFeePerVSize() const
Definition: feerate.h:57
friend CFeeRate operator*(const CFeeRate &f, int a)
Definition: feerate.h:76
CAmount GetFeePerK() const
Return the fee in satoshis for a vsize of 1000 vbytes.
Definition: feerate.h:62
CAmount GetFee(int32_t virtual_bytes) const
Return the fee in satoshis for the given vsize in vbytes.
Definition: feerate.cpp:20
CFeeRate & operator+=(const CFeeRate &a)
Definition: feerate.h:71
FeePerUnit< VSizeTag > FeePerVSize
Definition: feefrac.h:252
const std::string CURRENCY_ATOM
Definition: feerate.h:20
FeeRateFormat
Definition: feerate.h:22
@ BTC_KVB
Use BTC/kvB fee rate unit.
@ SAT_VB
Use sat/vB fee rate unit.
const std::string CURRENCY_UNIT
Definition: feerate.h:19
#define READWRITE(...)
Definition: serialize.h:145
int64_t fee
Definition: feefrac.h:107
int64_t EvaluateFeeDown(int32_t at_size) const noexcept
Compute the fee for a given size at_size using this object's feerate, rounding down.
Definition: feefrac.h:221
int32_t size
Definition: feefrac.h:108