From 4ed2521a07f2b3bdb0c28140bd0742cf12d42d13 Mon Sep 17 00:00:00 2001 From: Victor Forgeoux <100780559+vforgeoux-ledger@users.noreply.github.com> Date: Tue, 27 Jun 2023 17:11:25 +0200 Subject: [PATCH] Update networks Added LUSKO and LUSKO Testnet : https://github.com/LedgerHQ/app-ethereum/pull/436 Added PulseChain : https://github.com/LedgerHQ/app-ethereum/pull/430 Added Neon Devnet : https://github.com/LedgerHQ/app-ethereum/pull/439 Adding Chiado and Renamed xDAI to Gnosis : https://github.com/LedgerHQ/app-ethereum/pull/422 Added Venidium : https://github.com/LedgerHQ/app-ethereum/pull/382 --- src_common/network.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/src_common/network.c b/src_common/network.c index 9959ee4..0dcda7d 100644 --- a/src_common/network.c +++ b/src_common/network.c @@ -16,9 +16,11 @@ static const network_info_t NETWORK_MAPPING[] = { {.chain_id = 4, .name = "Rinkeby", .ticker = "ETH"}, {.chain_id = 5, .name = "Goerli", .ticker = "ETH"}, {.chain_id = 10, .name = "Optimism", .ticker = "ETH"}, - {.chain_id = 42, .name = "Kovan", .ticker = "ETH"}, + {.chain_id = 42, .name = "LUKSO", .ticker = "LYX"}, + {.chain_id = 4201, .name = "LUKSO Testnet", .ticker = "LYXt"}, {.chain_id = 56, .name = "BSC", .ticker = "BNB"}, - {.chain_id = 100, .name = "xDai", .ticker = "xDAI"}, + {.chain_id = 100, .name = "Gnosis", .ticker = "xDAI"}, + {.chain_id = 10200, .name = "Chiado", .ticker = "xDAI"}, {.chain_id = 137, .name = "Polygon", .ticker = "MATIC"}, {.chain_id = 250, .name = "Fantom", .ticker = "FTM"}, {.chain_id = 42161, .name = "Arbitrum", .ticker = "ETH"}, @@ -64,6 +66,9 @@ static const network_info_t NETWORK_MAPPING[] = { {.chain_id = 106, .name = "Velas EVM", .ticker = "VLX"}, {.chain_id = 288, .name = "Boba Network", .ticker = "ETH"}, {.chain_id = 39797, .name = "Energi", .ticker = "NRG"}, + {.chain_id = 369, .name = "PulseChain", .ticker = "PLS"}, + {.chain_id = 245022926, .name = "Neon EVM Devnet", .ticker = "NEON"}, + {.chain_id = 4919, .name = "Venidium", .ticker = "XVM"}, {.chain_id = 248, .name = "Oasys", .ticker = "OAS"}}; static const network_info_t *get_network_from_chain_id(const uint64_t *chain_id) {