Skip to content

Instantly share code, notes, and snippets.

@WietseWind
Last active December 18, 2021 15:32
Show Gist options
  • Save WietseWind/06e563a9988ad25043f24c091fceaba8 to your computer and use it in GitHub Desktop.
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
{
"TransactionType": "AccountSet",
"Account": "rIssuingAccount...",
"SetFlag": 8
}
{
"TransactionType": "TrustSet",
"Account": "rReceivingHotWallet...",
"Flags": 131072,
"LimitAmount": {
"currency": "4D5920415745534F4D45204E465420F09F8E8921",
"issuer": "rIssuingAccount...",
"value": "1000000000000000e-96"
}
}
{
"TransactionType": "Payment",
"Account": "rIssuingAccount...",
"Destination": "rReceivingHotWallet...",
"Amount": {
"currency": "4D5920415745534F4D45204E465420F09F8E8921",
"issuer": "rIssuingAccount...",
"value": "1000000000000000e-96"
}
}
{
"TransactionType": "SetRegularKey",
"Account": "rIssuingAccount...",
"Fee": "12",
"RegularKey": "rrrrrrrrrrrrrrrrrrrrBZbvji"
}
{
"TransactionType": "AccountSet",
"Account" : "rIssuingAccount...",
"Fee": "12",
"SetFlag": 4
}
{
"TransactionType": "TrustSet",
"Account": "rFriendToReceiveNFT...",
"Flags": 131072,
"LimitAmount": {
"currency": "4D5920415745534F4D45204E465420F09F8E8921",
"issuer": "rIssuingAccount...",
"value": "1000000000000000e-96"
}
}
{
"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