From 4171e618a28e3e719f9b8229202261222a24c3a4 Mon Sep 17 00:00:00 2001 From: Denis Angell Date: Tue, 1 Aug 2023 05:29:57 +0200 Subject: [PATCH] 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) => {