Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add testnet SEED token to config.ts #6

Merged
merged 2 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added bridge-web/src/assets/seed_token.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Loading