From 33adf78af11cf78b79913c252fc52fada4cda478 Mon Sep 17 00:00:00 2001 From: keiff3r Date: Mon, 16 Jun 2025 10:54:29 +0200 Subject: [PATCH 1/3] docs: add a line about transaction fees --- doc/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api.md b/doc/api.md index 0177390..552bdd3 100644 --- a/doc/api.md +++ b/doc/api.md @@ -135,7 +135,7 @@ _This command returns an address for the given account number_ #### Description -_This command signs a transaction message_ +_This command signs a transaction message_. You won't find any fees in the transaction structure because the Everscale blockchain has constant fees. ##### Command From 4cc6ddd7830a18f9340481e8a61895861d789694 Mon Sep 17 00:00:00 2001 From: keiff3r Date: Mon, 16 Jun 2025 10:55:02 +0200 Subject: [PATCH 2/3] chore: bump version (patch) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 65fbf1d..f91bd7b 100644 --- a/Makefile +++ b/Makefile @@ -36,7 +36,7 @@ APP_LOAD_FLAGS=--appFlags 0x200 # Application version APPVERSION_M = 1 APPVERSION_N = 1 -APPVERSION_P = 6 +APPVERSION_P = 7 APPVERSION = "$(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)" # Application source files From b688a80b26d9b93c70e03ffd09103a3a82539112 Mon Sep 17 00:00:00 2001 From: Francois Beutin Date: Wed, 30 Jul 2025 10:18:18 +0200 Subject: [PATCH 3/3] Fix listvariants not selecting EVER --- Makefile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f91bd7b..4443a70 100644 --- a/Makefile +++ b/Makefile @@ -78,15 +78,13 @@ PATH_APP_LOAD_PARAMS = "44'/396'" # * It must at least contains one value. # * Values can be the app ticker or anything else but should be unique. VARIANT_PARAM = COIN +VARIANT_VALUES = VENOM EVER ifeq ($(COIN),VENOM) -VARIANT_VALUES = VENOM VARIANT_ID = 1 else -VARIANT_VALUES = EVER VARIANT_ID = 2 endif - DEFINES += VARIANT_ID=$(VARIANT_ID) # Enabling DEBUG flag will enable PRINTF and disable optimizations