From 488828f9d68408ec91ecd3254d1a76ac41510df9 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 1 Aug 2023 05:22:52 +0200 Subject: [PATCH 1/3] remove nft transactions --- content/transactions.json | 51 --------------------------------------- 1 file changed, 51 deletions(-) diff --git a/content/transactions.json b/content/transactions.json index 4ce6095..c9e7ce6 100644 --- a/content/transactions.json +++ b/content/transactions.json @@ -101,57 +101,6 @@ "Fulfillment": "A0028000", "Fee": "10" }, - { - "TransactionType": "NFTokenMint", - "Account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B", - "Fee": "10", - "NFTokenTaxon": 0, - "URI": "697066733A2F2F516D614374444B5A4656767666756676626479346573745A626851483744586831364354707631686F776D424779" - }, - { - "TransactionType": "NFTokenBurn", - "Account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B", - "Fee": "10", - "NFTokenID": "000B013A95F14B0044F78A264E41713C64B5F89242540EE208C3098E00000D65" - }, - { - "TransactionType": "NFTokenAcceptOffer", - "Account": "rvYAfWj5gh67oV6fW32ZzP3Aw4Eubs59B", - "Fee": "10", - "NFTokenSellOffer": "A2FA1A9911FE2AEF83DAB05F437768E26A301EF899BD31EB85E704B3D528FF18", - "NFTokenBuyOffer": "4AAAEEA76E3C8148473CB3840CE637676E561FB02BD4CA22CA59729EA815B862", - "NFTokenBrokerFee": "10" - }, - { - "TransactionType": "NFTokenCancelOffer", - "Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX", - "Fee": "10", - "NFTokenOffers": { - "$type": "json", - "$value": [ - "4AAAEEA76E3C8148473CB3840CE637676E561FB02BD4CA22CA59729EA815B862" - ] - } - }, - { - "TransactionType": "NFTokenCreateOffer", - "Account": "rs8jBmmfpwgmrSPgwMsh7CvKRmRt1JTVSX", - "NFTokenID": "000100001E962F495F07A990F4ED55ACCFEEF365DBAA76B6A048C0A200000007", - "Amount": { - "$value": "100", - "$type": "amount.xrp" - }, - "Flags": "1", - "Destination": { - "$type": "account", - "$value": "" - }, - "Owner": { - "$type": "account", - "$value": "" - }, - "Fee": "10" - }, { "TransactionType": "OfferCancel", "Account": "ra5nK24KXen9AHvsdFTKHSANinZseWnPcX", From 1860b2d9ced7c283fe673061d0836778eb02ffc5 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 1 Aug 2023 05:23:25 +0200 Subject: [PATCH 2/3] fix bad amount --- content/transactions.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/transactions.json b/content/transactions.json index c9e7ce6..18e29cd 100644 --- a/content/transactions.json +++ b/content/transactions.json @@ -263,7 +263,7 @@ "Destination": "rf1BiGeXwwQoi8Z2ueFYTEXSwuJYfV2Jpn", "Amount": { "$value": "100", - "$type": "xrp" + "$type": "amount.xrp" }, "Fee": "10", "Sequence": 1 @@ -281,7 +281,7 @@ "URITokenID": "B792B56B558C89C4E942E41B5DB66074E005CB198DB70C26C707AAC2FF5F74CB", "Amount": { "$value": "100", - "$type": "xrp" + "$type": "amount.xrp" }, "Fee": "10", "Sequence": 1 From 4171e618a28e3e719f9b8229202261222a24c3a4 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 1 Aug 2023 05:29:57 +0200 Subject: [PATCH 3/3] add uritoken flag --- state/constants/flags.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/state/constants/flags.ts b/state/constants/flags.ts index 73a023c..9a16f2e 100644 --- a/state/constants/flags.ts +++ b/state/constants/flags.ts @@ -47,6 +47,9 @@ export const transactionFlags: { [key: /* TransactionType */ string]: Flags } = tfSetFreeze: '0x00100000', tfClearFreeze: '0x00200000', }, + URITokenMint: { + tfBurnable: '0x00000001', + }, } export const getFlags = (tt?: string) => {