refactor: Rename ripple namespace to xrpl (#5982)

This change renames all occurrences of `namespace ripple` and `ripple::` to `namespace xrpl` and `xrpl::`, respectively, as well as the names of test suites. It also provides a script to allow developers to replicate the changes in their local branch or fork to avoid conflicts.
This commit is contained in:
Bart
2025-12-11 11:51:49 -05:00
committed by GitHub
parent 496efb71ca
commit 1eb0fdac65
1261 changed files with 4220 additions and 4235 deletions

View File

@@ -9,7 +9,7 @@
#include <optional>
#include <sstream>
namespace ripple {
namespace xrpl {
namespace test {
namespace jtx {
@@ -81,7 +81,7 @@ sig::operator()(Env& env, JTx& jt) const
Serializer msg;
serializeBatch(msg, stx.getFlags(), stx.getBatchTransactionIDs());
auto const sig = ripple::sign(
auto const sig = xrpl::sign(
*publicKeyType(e.sig.pk().slice()), e.sig.sk(), msg.slice());
jo[sfTxnSignature.getJsonName()] =
strHex(Slice{sig.data(), sig.size()});
@@ -121,7 +121,7 @@ msig::operator()(Env& env, JTx& jt) const
Serializer msg;
serializeBatch(msg, stx.getFlags(), stx.getBatchTransactionIDs());
finishMultiSigningData(e.acct.id(), msg);
auto const sig = ripple::sign(
auto const sig = xrpl::sign(
*publicKeyType(e.sig.pk().slice()), e.sig.sk(), msg.slice());
iso[sfTxnSignature.getJsonName()] =
strHex(Slice{sig.data(), sig.size()});
@@ -132,4 +132,4 @@ msig::operator()(Env& env, JTx& jt) const
} // namespace jtx
} // namespace test
} // namespace ripple
} // namespace xrpl