From 01c1de5d3dcb88abfa9c44581ed812d52031f308 Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Fri, 21 Aug 2026 11:28:01 +0200 Subject: [PATCH] Add mint_tx and account currency store serialization tags Reserve tags 150-152 for mint_tx, account_currency_store, and account_currency_balance. These are independent of the earlier nt_* native-token tags. --- src/gmser_chain_objects.erl | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gmser_chain_objects.erl b/src/gmser_chain_objects.erl index 636af6e..5a0ae55 100644 --- a/src/gmser_chain_objects.erl +++ b/src/gmser_chain_objects.erl @@ -121,6 +121,9 @@ tag(account_sig_store) -> 146; tag(auth_tx) -> 147; tag(proposal_gossip_tx) -> 148; tag(account_auth_update_tx) -> 149; +tag(mint_tx) -> 150; +tag(account_currency_store) -> 151; +tag(account_currency_balance) -> 152; tag(pof) -> 200. rev_tag(10) -> account; @@ -206,4 +209,7 @@ rev_tag(146) -> account_sig_store; rev_tag(147) -> auth_tx; rev_tag(148) -> proposal_gossip_tx; rev_tag(149) -> account_auth_update_tx; +rev_tag(150) -> mint_tx; +rev_tag(151) -> account_currency_store; +rev_tag(152) -> account_currency_balance; rev_tag(200) -> pof.