From c52816e3981d1457364b648b5d10c9b9f72fab89 Mon Sep 17 00:00:00 2001 From: tjulien-ledger <84443769+tjulien-ledger@users.noreply.github.com> Date: Wed, 19 Jul 2023 15:27:13 +0200 Subject: [PATCH] Update network.c Adding Base, Sepolia and Polygon zkEVM --- src_common/network.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src_common/network.c b/src_common/network.c index af147d6..8c0d238 100644 --- a/src_common/network.c +++ b/src_common/network.c @@ -73,6 +73,9 @@ static const network_info_t NETWORK_MAPPING[] = { {.chain_id = 40, .name = "Telos EVM Mainnet", .ticker = "TLOS"}, {.chain_id = 196, .name = "OKBChain Mainnet", .ticker = "OKB"}, {.chain_id = 248, .name = "Oasys", .ticker = "OAS"}, + {.chain_id = 1101, .name = "Polygon zkEVM", .ticker = "ETH"}, + {.chain_id = 8453, .name = "Base", .ticker = "ETH"}, + {.chain_id = 58008, .name = "Sepolia", .ticker = "ETH"}, }; static const network_info_t *get_network_from_chain_id(const uint64_t *chain_id) {