From b54c726e0607e3f8806dd8699dcf815108b4f905 Mon Sep 17 00:00:00 2001 From: DrZoltanFazekas <55164848+DrZoltanFazekas@users.noreply.github.com> Date: Tue, 16 Apr 2024 16:27:36 +0200 Subject: [PATCH] DEVOPS-1369: update config.ts (#653) Adding test tokens deployed on ZQ and BSC testnets to the config to enable them in the x-bridge UI --- products/bridge/bridge-web/src/config/config.ts | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/products/bridge/bridge-web/src/config/config.ts b/products/bridge/bridge-web/src/config/config.ts index 578730cdf..bf62227fe 100644 --- a/products/bridge/bridge-web/src/config/config.ts +++ b/products/bridge/bridge-web/src/config/config.ts @@ -70,6 +70,12 @@ export const chainConfigs: Partial> = blockExplorer: "https://otterscan.testnet.zilliqa.com/address/0x8618d39a8276D931603c6Bc7306af6A53aD2F1F3", }, + { + name: "TSLM", + address: "0xE90Dd366D627aCc5feBEC126211191901A69f8a0", + blockExplorer: + "https://otterscan.testnet.zilliqa.com/address/0xE90Dd366D627aCc5feBEC126211191901A69f8a0", + }, ], chainId: 33101, isZilliqa: true, @@ -90,6 +96,12 @@ export const chainConfigs: Partial> = blockExplorer: "https://testnet.bscscan.com/address/0x5190e8b4Bbe8C3a732BAdB600b57fD42ACbB9F4B", }, + { + name: "TST", + address: "0x7Cc585de659E8938Aa7d5709BeaF34bD108bdC03", + blockExplorer: + "https://testnet.bscscan.com/address/0x7Cc585de659E8938Aa7d5709BeaF34bD108bdC03", + }, ], chainId: 97, isZilliqa: false,