mirror of
https://github.com/XRPLF/rippled.git
synced 2026-04-03 18:42:29 +00:00
Per [XLS-0095](https://xls.xrpl.org/xls/XLS-0095-rename-rippled-to-xrpld.html), we are taking steps to rename ripple(d) to xrpl(d). This change modifies the system name from `rippled` to `xrpld`. The system name is used in limited places: * When no explicit config file is passed via the `--config` flag, then the system name is used to construct the path where the config file and database may be stored, via the `$XDG_CONFIG_HOME` and `$XDG_DATA_HOME` directories, respectively. * It is used in the metadata and user-agent as part of RPC calls. * It is newly used in the full version string.
68 lines
1.8 KiB
C++
68 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include <xrpl/basics/chrono.h>
|
|
#include <xrpl/protocol/XRPAmount.h>
|
|
|
|
#include <cstdint>
|
|
#include <string>
|
|
|
|
namespace xrpl {
|
|
|
|
// Various protocol and system specific constant globals.
|
|
|
|
/* The name of the system. */
|
|
static inline std::string const&
|
|
systemName()
|
|
{
|
|
static std::string const name = "xrpld";
|
|
return name;
|
|
}
|
|
|
|
/** Configure the native currency. */
|
|
|
|
/** Number of drops in the genesis account. */
|
|
constexpr XRPAmount INITIAL_XRP{100'000'000'000 * DROPS_PER_XRP};
|
|
static_assert(INITIAL_XRP.drops() == 100'000'000'000'000'000);
|
|
static_assert(Number::maxRep >= INITIAL_XRP.drops());
|
|
|
|
/** Returns true if the amount does not exceed the initial XRP in existence. */
|
|
inline bool
|
|
isLegalAmount(XRPAmount const& amount)
|
|
{
|
|
return amount <= INITIAL_XRP;
|
|
}
|
|
|
|
/** Returns true if the absolute value of the amount does not exceed the initial
|
|
* XRP in existence. */
|
|
inline bool
|
|
isLegalAmountSigned(XRPAmount const& amount)
|
|
{
|
|
return amount >= -INITIAL_XRP && amount <= INITIAL_XRP;
|
|
}
|
|
|
|
/* The currency code for the native currency. */
|
|
static inline std::string const&
|
|
systemCurrencyCode()
|
|
{
|
|
static std::string const code = "XRP";
|
|
return code;
|
|
}
|
|
|
|
/** The XRP ledger network's earliest allowed sequence */
|
|
static constexpr std::uint32_t XRP_LEDGER_EARLIEST_SEQ{32570u};
|
|
|
|
/** The XRP Ledger mainnet's earliest ledger with a FeeSettings object. Only
|
|
* used in asserts and tests. */
|
|
static constexpr std::uint32_t XRP_LEDGER_EARLIEST_FEES{562177u};
|
|
|
|
/** The minimum amount of support an amendment should have. */
|
|
constexpr std::ratio<80, 100> amendmentMajorityCalcThreshold;
|
|
|
|
/** The minimum amount of time an amendment must hold a majority */
|
|
constexpr std::chrono::seconds const defaultAmendmentMajorityTime = weeks{2};
|
|
|
|
} // namespace xrpl
|
|
|
|
/** Default peer port (IANA registered) */
|
|
inline std::uint16_t constexpr DEFAULT_PEER_PORT{2459};
|