From 49d4f0854791e482da7b467672f83d1af6a778d5 Mon Sep 17 00:00:00 2001 From: Ruben Marcus Date: Fri, 25 Oct 2024 12:11:39 +0100 Subject: [PATCH] Add OP & Polygon Testnet Data (#141) --- src/network/constants.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/network/constants.ts b/src/network/constants.ts index 15adc8c..497d36b 100644 --- a/src/network/constants.ts +++ b/src/network/constants.ts @@ -81,6 +81,12 @@ export const CHAIN_INFO: Record = { icon: BASE_ICON, wrappedToken: "0x4200000000000000000000000000000000000006", }, + // Polygon Amoy + 80002: { + currencyIcon: POL, + icon: POLYGON_ICON, + wrappedToken: "0xa5733b3a8e62a8faf43b0376d5faf46e89b3033e", + }, // Arbitrum Sepolia 421614: { currencyIcon: ETHER, @@ -93,4 +99,11 @@ export const CHAIN_INFO: Record = { icon: ETHEREUM_ICON, wrappedToken: "0xfff9976782d46cc05630d1f6ebab18b2324d6b14", }, + + // OP Testnet + 11155420:{ + currencyIcon: ETHER, + icon: OPTIMISM_ICON, + wrappedToken: "0x4200000000000000000000000000000000000006", + }, };