Skip to content

Commit

Permalink
add testnet SEED token to config.ts
Browse files Browse the repository at this point in the history
SEED logo and token config for Zilliqa and BSC testnet
  • Loading branch information
DrZoltanFazekas authored Jul 25, 2024
1 parent 3275049 commit 6de3435
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions bridge-web/src/config/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { bsc, bscTestnet, zilliqa, zilliqaTestnet } from "viem/chains";
import fps_token from "../assets/fps_token.png";
import test_hrse_token from "../assets/salami_hrse.webp";
import hrse_token from "../assets/hrse_token.webp";
import seed_token from "../assets/seed_token.png";

export enum TokenManagerType {
MintAndBurn,
Expand Down Expand Up @@ -107,6 +108,13 @@ export const chainConfigs: Partial<Record<Chains, ChainConfig>> =
"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,
Expand Down Expand Up @@ -138,6 +146,13 @@ export const chainConfigs: Partial<Record<Chains, ChainConfig>> =
"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,
Expand Down

0 comments on commit 6de3435

Please sign in to comment.