Skip to content
This repository has been archived by the owner on Nov 8, 2023. It is now read-only.

add some chain data #162

Closed
wants to merge 2 commits into from
Closed
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
32 changes: 32 additions & 0 deletions src/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,36 @@ export const chains: ChainData[] = [
explorer: "",
exchangeRate: 1,
},
{
name: "Polygon zkEVM Testnet",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could we add these to the hardhat config as well?

symbol: "polyETH",
url: "https://rpc.public.zkevm-test.net",
chainID: 1442n,
explorer: "https://testnet-zkevm.polygonscan.com/",
exchangeRate: 1,
},
{
name: "Filecoin Calibration Testnet",
symbol: "tFIL",
url: "https://api.calibration.node.glif.io/rpc/v1",
chainID: 314159n,
explorer: "https://beryx.zondax.ch/",
exchangeRate: 1,
},
{
name: "Mantle Testnet",
symbol: "MNT",
url: "https://rpc.testnet.mantle.xyz",
chainID: 5001n,
explorer: "https://testnet.mantlescan.org/",
exchangeRate: 1,
},
{
name: "Sepolia Testnet",
symbol: "ETH",
url: "https://rpc-sepolia.rockx.com",
chainID: 11155111n,
explorer: "https://sepolia.etherscan.io/",
exchangeRate: 1,
},
];