Files
rippled/include/xrpl/tx/transactors/SetOracle.h
2026-02-17 18:10:07 +00:00

38 lines
832 B
C++

#pragma once
#include <xrpl/tx/Transactor.h>
namespace xrpl {
/**
Price Oracle is a system that acts as a bridge between
a blockchain network and the external world, providing off-chain price data
to decentralized applications (dApps) on the blockchain. This implementation
conforms to the requirements specified in the XLS-47d.
The SetOracle transactor implements creating or updating Oracle objects.
*/
class SetOracle : public Transactor
{
public:
static constexpr ConsequencesFactoryType ConsequencesFactory{Normal};
explicit SetOracle(ApplyContext& ctx) : Transactor(ctx)
{
}
static NotTEC
preflight(PreflightContext const& ctx);
static TER
preclaim(PreclaimContext const& ctx);
TER
doApply() override;
};
using OracleSet = SetOracle;
} // namespace xrpl