Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading