mirror of
https://github.com/Xahau/xahaud.git
synced 2025-11-20 10:35:50 +00:00
Introduce NFT support (XLS020)
This commit is contained in:
committed by
manojsdoshi
parent
525aaecbca
commit
70779f6850
@@ -124,6 +124,21 @@ enum TxType : std::uint16_t
|
||||
/** This transaction type installs a hook. */
|
||||
ttHOOK_SET [[maybe_unused]] = 22,
|
||||
|
||||
/** This transaction mints a new NFT. */
|
||||
ttNFTOKEN_MINT = 25,
|
||||
|
||||
/** This transaction burns (i.e. destroys) an existing NFT. */
|
||||
ttNFTOKEN_BURN = 26,
|
||||
|
||||
/** This transaction creates a new offer to buy or sell an NFT. */
|
||||
ttNFTOKEN_CREATE_OFFER = 27,
|
||||
|
||||
/** This transaction cancels an existing offer to buy or sell an existing NFT. */
|
||||
ttNFTOKEN_CANCEL_OFFER = 28,
|
||||
|
||||
/** This transaction accepts an existing offer to buy or sell an existing NFT. */
|
||||
ttNFTOKEN_ACCEPT_OFFER = 29,
|
||||
|
||||
/** This system-generated transaction type is used to update the status of the various amendments.
|
||||
|
||||
For details, see: https://xrpl.org/amendments.html
|
||||
|
||||
Reference in New Issue
Block a user