From ba1b02bbf46d71102a59c295f008bd54d91a1c04 Mon Sep 17 00:00:00 2001 From: DrZoltanFazekas <55164848+DrZoltanFazekas@users.noreply.github.com> Date: Fri, 23 Aug 2024 08:29:13 +0200 Subject: [PATCH] add the SEED token to the x-bridge webapp config (#10) * add contract address to filters * add contract address to filters * add the SEED token to the x-bridge webapp config --- bridge-web/src/config/config.ts | 42 ++++++++++++++++++++++----------- 1 file changed, 28 insertions(+), 14 deletions(-) diff --git a/bridge-web/src/config/config.ts b/bridge-web/src/config/config.ts index 8c3be1d..db29409 100644 --- a/bridge-web/src/config/config.ts +++ b/bridge-web/src/config/config.ts @@ -33,6 +33,13 @@ export const chainConfigs: Partial> = tokenManagerType: TokenManagerType.LockAndRelease, wagmiChain: zilliqa, tokens: [ + { + name: "SEED", + address: "0xe64cA52EF34FdD7e20C0c7fb2E392cc9b4F6D049", + blockExplorer: + "https://otterscan.zilliqa.com/address/0xe64cA52EF34FdD7e20C0c7fb2E392cc9b4F6D049", + logo: seed_token, + }, { name: "HRSE", address: "0x63B991C17010C21250a0eA58C6697F696a48cdf3", @@ -64,6 +71,13 @@ export const chainConfigs: Partial> = chainGatewayAddress: "0x3967f1a272Ed007e6B6471b942d655C802b42009", tokenManagerType: TokenManagerType.MintAndBurn, tokens: [ + { + name: "SEED", + address: "0x9158dF7da69b048a296636D5DE7a3d9A7FB25E88", + blockExplorer: + "https://bscscan.com/address/0x9158dF7da69b048a296636D5DE7a3d9A7FB25E88", + logo: seed_token, + }, { name: "HRSE", address: "0x3BE0E5EDC58bd55AAa381Fa642688ADC289c05a3", @@ -94,6 +108,13 @@ export const chainConfigs: Partial> = chainGatewayAddress: "0x7370e69565BB2313C4dA12F9062C282513919230", wagmiChain: zilliqaTestnet, tokens: [ + { + name: "SEED", + address: "0x28e8d39Fc68eaA27c88797Eb7D324b4B97D5b844", + blockExplorer: + "https://otterscan.testnet.zilliqa.com/address/0x28e8d39Fc68eaA27c88797Eb7D324b4B97D5b844", + logo: seed_token, + }, { name: "TST", address: "0x8618d39a8276D931603c6Bc7306af6A53aD2F1F3", @@ -108,13 +129,6 @@ export const chainConfigs: Partial> = "https://otterscan.testnet.zilliqa.com/address/0xE90Dd366D627aCc5feBEC126211191901A69f8a0", logo: test_hrse_token, }, - { - name: "SEED", - address: "0x28e8d39Fc68eaA27c88797Eb7D324b4B97D5b844", - blockExplorer: - "https://otterscan.testnet.zilliqa.com/address/0x28e8d39Fc68eaA27c88797Eb7D324b4B97D5b844", - logo: seed_token, - }, ], chainId: 33101, isZilliqa: true, @@ -132,6 +146,13 @@ export const chainConfigs: Partial> = tokenManagerType: TokenManagerType.MintAndBurn, chainGatewayAddress: "0xa9A14C90e53EdCD89dFd201A3bF94D867f8098fE", tokens: [ + { + name: "SEED", + address: "0x486722DbA2F76aeFb9977641D11f3aC3e5bA281f", + blockExplorer: + "https://testnet.bscscan.com/address/0x486722DbA2F76aeFb9977641D11f3aC3e5bA281f", + logo: seed_token, + }, { name: "TST", address: "0x5190e8b4Bbe8C3a732BAdB600b57fD42ACbB9F4B", @@ -146,13 +167,6 @@ export const chainConfigs: Partial> = "https://testnet.bscscan.com/address/0x7Cc585de659E8938Aa7d5709BeaF34bD108bdC03", logo: test_hrse_token, }, - { - name: "SEED", - address: "0x486722DbA2F76aeFb9977641D11f3aC3e5bA281f", - blockExplorer: - "https://testnet.bscscan.com/address/0x486722DbA2F76aeFb9977641D11f3aC3e5bA281f", - logo: seed_token, - }, ], chainId: 97, isZilliqa: false,