mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-19 18:45:52 +00:00
- Specification: XRPLF/XRPL-Standards#239 - Amendment: `SingleAssetVault` - Implements a vault feature used to store a fungible asset (XRP, IOU, or MPT, but not NFT) and to receive shares in the vault (an MPT) in exchange. - A vault can be private or public. - A private vault can use permissioned domains, subject to the `PermissionedDomains` amendment. - Shares can be exchanged back into asset with `VaultWithdraw`. - Permissions on the asset in the vault are transitively applied on shares in the vault. - Issuer of the asset in the vault can clawback with `VaultClawback`. - Extended `MPTokenIssuance` with `DomainID`, used by the permissioned domain on the vault shares. Co-authored-by: John Freeman <jfreeman08@gmail.com>
102 lines
2.5 KiB
C++
102 lines
2.5 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of rippled: https://github.com/ripple/rippled
|
|
Copyright (c) 2024 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_PROTOCOL_MPTISSUE_H_INCLUDED
|
|
#define RIPPLE_PROTOCOL_MPTISSUE_H_INCLUDED
|
|
|
|
#include <xrpl/protocol/AccountID.h>
|
|
#include <xrpl/protocol/UintTypes.h>
|
|
|
|
namespace ripple {
|
|
|
|
/* Adapt MPTID to provide the same interface as Issue. Enables using static
|
|
* polymorphism by Asset and other classes. MPTID is a 192-bit concatenation
|
|
* of a 32-bit account sequence and a 160-bit account id.
|
|
*/
|
|
class MPTIssue
|
|
{
|
|
private:
|
|
MPTID mptID_;
|
|
|
|
public:
|
|
MPTIssue() = default;
|
|
|
|
explicit MPTIssue(MPTID const& issuanceID);
|
|
|
|
AccountID const&
|
|
getIssuer() const;
|
|
|
|
constexpr MPTID const&
|
|
getMptID() const
|
|
{
|
|
return mptID_;
|
|
}
|
|
|
|
std::string
|
|
getText() const;
|
|
|
|
void
|
|
setJson(Json::Value& jv) const;
|
|
|
|
friend constexpr bool
|
|
operator==(MPTIssue const& lhs, MPTIssue const& rhs);
|
|
|
|
friend constexpr std::weak_ordering
|
|
operator<=>(MPTIssue const& lhs, MPTIssue const& rhs);
|
|
|
|
bool
|
|
native() const
|
|
{
|
|
return false;
|
|
}
|
|
};
|
|
|
|
constexpr bool
|
|
operator==(MPTIssue const& lhs, MPTIssue const& rhs)
|
|
{
|
|
return lhs.mptID_ == rhs.mptID_;
|
|
}
|
|
|
|
constexpr std::weak_ordering
|
|
operator<=>(MPTIssue const& lhs, MPTIssue const& rhs)
|
|
{
|
|
return lhs.mptID_ <=> rhs.mptID_;
|
|
}
|
|
|
|
/** MPT is a non-native token.
|
|
*/
|
|
inline bool
|
|
isXRP(MPTID const&)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
Json::Value
|
|
to_json(MPTIssue const& mptIssue);
|
|
|
|
std::string
|
|
to_string(MPTIssue const& mptIssue);
|
|
|
|
MPTIssue
|
|
mptIssueFromJson(Json::Value const& jv);
|
|
|
|
} // namespace ripple
|
|
|
|
#endif // RIPPLE_PROTOCOL_MPTISSUE_H_INCLUDED
|