Last active
December 18, 2021 15:32
-
-
Save WietseWind/06e563a9988ad25043f24c091fceaba8 to your computer and use it in GitHub Desktop.
Issue tokens (NFT) on the XRPL as discussed in XLS-14d - https://github.com/XRPLF/XRPL-Standards/discussions/30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "AccountSet", | |
"Account": "rIssuingAccount...", | |
"SetFlag": 8 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "TrustSet", | |
"Account": "rReceivingHotWallet...", | |
"Flags": 131072, | |
"LimitAmount": { | |
"currency": "4D5920415745534F4D45204E465420F09F8E8921", | |
"issuer": "rIssuingAccount...", | |
"value": "1000000000000000e-96" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "Payment", | |
"Account": "rIssuingAccount...", | |
"Destination": "rReceivingHotWallet...", | |
"Amount": { | |
"currency": "4D5920415745534F4D45204E465420F09F8E8921", | |
"issuer": "rIssuingAccount...", | |
"value": "1000000000000000e-96" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "SetRegularKey", | |
"Account": "rIssuingAccount...", | |
"Fee": "12", | |
"RegularKey": "rrrrrrrrrrrrrrrrrrrrBZbvji" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "AccountSet", | |
"Account" : "rIssuingAccount...", | |
"Fee": "12", | |
"SetFlag": 4 | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "TrustSet", | |
"Account": "rFriendToReceiveNFT...", | |
"Flags": 131072, | |
"LimitAmount": { | |
"currency": "4D5920415745534F4D45204E465420F09F8E8921", | |
"issuer": "rIssuingAccount...", | |
"value": "1000000000000000e-96" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"TransactionType": "Payment", | |
"Account": "rReceivingHotWallet...", | |
"Destination": "rFriendToReceiveNFT...", | |
"Amount": { | |
"currency": "4D5920415745534F4D45204E465420F09F8E8921", | |
"issuer": "rIssuingAccount...", | |
"value": "1000000000000000e-96" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment