Files
rippled/include/xrpl/protocol_autogen/transactions/SetRegularKey.h
2026-03-03 15:57:27 +00:00

124 lines
3.3 KiB
C++

#pragma once
#include <xrpl/protocol/STTx.h>
#include <xrpl/protocol/STParsedJSON.h>
#include <xrpl/protocol/jss.h>
#include <xrpl/protocol_autogen/TransactionBase.h>
#include <xrpl/protocol_autogen/TransactionBuilderBase.h>
#include <xrpl/json/json_value.h>
#include <stdexcept>
#include <optional>
# cspell:words equalto
namespace xrpl::transactions {
// Forward declaration
class SetRegularKeyBuilder;
/**
* Transaction: SetRegularKey
* Type: ttREGULAR_KEY_SET (5)
* Delegable: Delegation::notDelegable
* Amendment: uint256{}
* Privileges: noPriv
*
* Immutable wrapper around STTx providing type-safe field access.
* Use SetRegularKeyBuilder to construct new transactions.
*/
class SetRegularKey : public TransactionBase
{
public:
static constexpr xrpl::TxType txType = ttREGULAR_KEY_SET;
/**
* Construct a SetRegularKey transaction wrapper from an existing STTx object.
* @throws std::runtime_error if the transaction type doesn't match.
*/
explicit SetRegularKey(STTx const& tx)
: TransactionBase(tx)
{
// Verify transaction type
if (tx.getTxnType() != txType)
{
throw std::runtime_error("Invalid transaction type for SetRegularKey");
}
}
// Transaction-specific field getters
/**
* Get sfRegularKey (soeOPTIONAL)
*/
[[nodiscard]]
protocol_autogen::Optional<SF_ACCOUNT::type::value_type>
getRegularKey() const
{
if (hasRegularKey())
{
return this->tx_.at(sfRegularKey);
}
return std::nullopt;
}
[[nodiscard]]
bool
hasRegularKey() const
{
return this->tx_.isFieldPresent(sfRegularKey);
}
};
/**
* Builder for SetRegularKey transactions.
* Provides a fluent interface for constructing transactions with method chaining.
* Uses Json::Value internally for flexible transaction construction.
* Inherits common field setters from TransactionBuilderBase.
*/
class SetRegularKeyBuilder : public TransactionBuilderBase<SetRegularKeyBuilder>
{
public:
SetRegularKeyBuilder(SF_ACCOUNT::type::value_type account,
SF_UINT32::type::value_type sequence,
SF_AMOUNT::type::value_type fee,
SF_VL::type::value_type signingPubKey)
: TransactionBuilderBase<SetRegularKeyBuilder>(account, sequence, fee, signingPubKey, ttREGULAR_KEY_SET)
{
}
SetRegularKeyBuilder(STTx const& tx)
{
if (tx.getTxnType() != ttREGULAR_KEY_SET)
{
throw std::runtime_error("Invalid transaction type for SetRegularKeyBuilder");
}
object_ = tx;
}
// Transaction-specific field setters
/**
* Set sfRegularKey (soeOPTIONAL)
* @return Reference to this builder for method chaining.
*/
SetRegularKeyBuilder&
setRegularKey(std::decay_t<typename SF_ACCOUNT::type::value_type> const& value)
{
object_[sfRegularKey] = value;
return *this;
}
/**
* Build and return the completed SetRegularKey wrapper.
* @return The constructed transaction wrapper.
* @throws std::runtime_error if the JSON cannot be parsed into a valid transaction.
*/
SetRegularKey
build()
{
return SetRegularKey(STTx(std::move(object_)));
}
};
} // namespace xrpl::transactions