Files
rippled/src/test/jtx/Oracle.h
Gregory Tsipenyuk e718378bdb Price Oracle (XLS-47d): (#4789) (#4789)
Implement native support for Price Oracles.

 A Price Oracle is used to bring real-world data, such as market prices,
 onto the blockchain, enabling dApps to access and utilize information
 that resides outside the blockchain.

 Add Price Oracle functionality:
 - OracleSet: create or update the Oracle object
 - OracleDelete: delete the Oracle object

 To support this functionality add:
 - New RPC method, `get_aggregate_price`, to calculate aggregate price for a token pair of the specified oracles
 - `ltOracle` object

 The `ltOracle` object maintains:
 - Oracle Owner's account
 - Oracle's metadata
 - Up to ten token pairs with the scaled price
 - The last update time the token pairs were updated

 Add Oracle unit-tests
2024-02-26 06:28:26 -05:00

187 lines
5.7 KiB
C++

//------------------------------------------------------------------------------
/*
This file is part of rippled: https://github.com/ripple/rippled
Copyright (c) 2012, 2013 Ripple Labs Inc.
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
ANY SPECIAL , DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
//==============================================================================
#ifndef RIPPLE_TEST_JTX_ORACLE_H_INCLUDED
#define RIPPLE_TEST_JTX_ORACLE_H_INCLUDED
#include <date/date.h>
#include <test/jtx.h>
namespace ripple {
namespace test {
namespace jtx {
namespace oracle {
// base asset, quote asset, price, scale
using DataSeries = std::vector<std::tuple<
std::string,
std::string,
std::optional<std::uint32_t>,
std::optional<std::uint8_t>>>;
// Typical defaults for Create
struct CreateArg
{
std::optional<AccountID> owner = std::nullopt;
std::optional<std::uint32_t> documentID = 1;
DataSeries series = {{"XRP", "USD", 740, 1}};
std::optional<std::string> assetClass = "currency";
std::optional<std::string> provider = "provider";
std::optional<std::string> uri = "URI";
std::optional<std::uint32_t> lastUpdateTime = std::nullopt;
std::uint32_t flags = 0;
std::optional<jtx::msig> msig = std::nullopt;
std::optional<jtx::seq> seq = std::nullopt;
std::uint32_t fee = 10;
std::optional<ter> err = std::nullopt;
bool close = false;
};
// Typical defaults for Update
struct UpdateArg
{
std::optional<AccountID> owner = std::nullopt;
std::optional<std::uint32_t> documentID = std::nullopt;
DataSeries series = {};
std::optional<std::string> assetClass = std::nullopt;
std::optional<std::string> provider = std::nullopt;
std::optional<std::string> uri = "URI";
std::optional<std::uint32_t> lastUpdateTime = std::nullopt;
std::uint32_t flags = 0;
std::optional<jtx::msig> msig = std::nullopt;
std::optional<jtx::seq> seq = std::nullopt;
std::uint32_t fee = 10;
std::optional<ter> err = std::nullopt;
};
struct RemoveArg
{
std::optional<AccountID> const& owner = std::nullopt;
std::optional<std::uint32_t> const& documentID = std::nullopt;
std::optional<jtx::msig> const& msig = std::nullopt;
std::optional<jtx::seq> seq = std::nullopt;
std::uint32_t fee = 10;
std::optional<ter> const& err = std::nullopt;
};
// Simulate testStartTime as 10'000s from Ripple epoch time to make
// LastUpdateTime validation to work and to make unit-test consistent.
// The value doesn't matter much, it has to be greater
// than maxLastUpdateTimeDelta in order to pass LastUpdateTime
// validation {close-maxLastUpdateTimeDelta,close+maxLastUpdateTimeDelta}.
constexpr static std::chrono::seconds testStartTime =
epoch_offset + std::chrono::seconds(10'000);
/** Oracle class facilitates unit-testing of the Price Oracle feature.
* It defines functions to create, update, and delete the Oracle object,
* to query for various states, and to call APIs.
*/
class Oracle
{
private:
// Global fee if not 0
static inline std::uint32_t fee = 0;
Env& env_;
AccountID owner_;
std::uint32_t documentID_;
private:
void
submit(
Json::Value const& jv,
std::optional<jtx::msig> const& msig,
std::optional<jtx::seq> const& seq,
std::optional<ter> const& err);
public:
Oracle(Env& env, CreateArg const& arg, bool submit = true);
void
remove(RemoveArg const& arg);
void
set(CreateArg const& arg);
void
set(UpdateArg const& arg);
static Json::Value
aggregatePrice(
Env& env,
std::optional<std::string> const& baseAsset,
std::optional<std::string> const& quoteAsset,
std::optional<std::vector<std::pair<Account, std::uint32_t>>> const&
oracles = std::nullopt,
std::optional<std::uint8_t> const& trim = std::nullopt,
std::optional<std::uint8_t> const& timeTreshold = std::nullopt);
std::uint32_t
documentID() const
{
return documentID_;
}
[[nodiscard]] bool
exists() const
{
return exists(env_, owner_, documentID_);
}
[[nodiscard]] static bool
exists(Env& env, AccountID const& account, std::uint32_t documentID);
[[nodiscard]] bool
expectPrice(DataSeries const& pricess) const;
[[nodiscard]] bool
expectLastUpdateTime(std::uint32_t lastUpdateTime) const;
static Json::Value
ledgerEntry(
Env& env,
AccountID const& account,
std::variant<std::uint32_t, std::string> const& documentID,
std::optional<std::string> const& index = std::nullopt);
Json::Value
ledgerEntry(std::optional<std::string> const& index = std::nullopt) const
{
return Oracle::ledgerEntry(env_, owner_, documentID_, index);
}
static void
setFee(std::uint32_t f)
{
fee = f;
}
friend std::ostream&
operator<<(std::ostream& strm, Oracle const& oracle)
{
strm << oracle.ledgerEntry().toStyledString();
return strm;
}
};
} // namespace oracle
} // namespace jtx
} // namespace test
} // namespace ripple
#endif // RIPPLE_TEST_JTX_ORACLE_H_INCLUDED