Skip to content

Commit 3ec9274

Browse files
Merge pull request #633 from LedgerHQ/vfx/pol_migration
Polygon ticker migration : MATIC -> POL
2 parents 09abc1f + fe17a9b commit 3ec9274

File tree

32 files changed

+9
-3
lines changed

32 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [1.11.3](https://github.com/ledgerhq/app-ethereum/compare/1.11.2...1.11.3) - 2024-09-04
9+
10+
### Changed
11+
12+
- Replaced MATIC by POL ticker for Polygon network
13+
814
## [1.11.2](https://github.com/ledgerhq/app-ethereum/compare/1.11.1...1.11.2) - 2024-08-13
915

1016
### Added

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ include ./makefile_conf/chain/$(CHAIN).mk
3939

4040
APPVERSION_M = 1
4141
APPVERSION_N = 11
42-
APPVERSION_P = 2
42+
APPVERSION_P = 3
4343
APPVERSION = $(APPVERSION_M).$(APPVERSION_N).$(APPVERSION_P)
4444

4545
# Application source files

makefile_conf/chain/polygon.mk

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
PATH_APP_LOAD_PARAMS += "44'/60'"
2-
TICKER = "MATIC"
2+
TICKER = "POL"
33
CHAIN_ID = 137
44
APPNAME = "Polygon"

src/network.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ static const network_info_t NETWORK_MAPPING[] = {
3838
{.chain_id = 99, .name = "POA", .ticker = "POA"},
3939
{.chain_id = 100, .name = "Gnosis", .ticker = "xDAI"},
4040
{.chain_id = 106, .name = "Velas EVM", .ticker = "VLX"},
41-
{.chain_id = 137, .name = "Polygon", .ticker = "MATIC"},
41+
{.chain_id = 137, .name = "Polygon", .ticker = "POL"},
4242
{.chain_id = 196, .name = "OKBChain Mainnet", .ticker = "OKB"},
4343
{.chain_id = 199, .name = "BTTC", .ticker = "BTT"},
4444
{.chain_id = 246, .name = "EnergyWebChain", .ticker = "EWT"},
-401 Bytes
Loading
-390 Bytes
Loading
-366 Bytes
Loading
-401 Bytes
Loading
-401 Bytes
Loading
-369 Bytes
Loading

0 commit comments

Comments
 (0)