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 OP & Polygon Testnet Data #141

Merged
merged 2 commits into from
Oct 25, 2024
Merged
Changes from 1 commit
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
14 changes: 13 additions & 1 deletion src/network/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,12 @@ export const CHAIN_INFO: Record<number, ChainInfo> = {
icon: OPTIMISM_ICON,
wrappedToken: "0x4200000000000000000000000000000000000006",
},
// OP Testnet
11155420:{
currencyIcon: ETHER,
icon: OPTIMISM_ICON,
wrappedToken: "0x4200000000000000000000000000000000000006",
},
// Binance Smart Chain
56: {
icon: BINANCE_ICON,
Expand All @@ -57,6 +63,12 @@ export const CHAIN_INFO: Record<number, ChainInfo> = {
currencyIcon: POL,
wrappedToken: "0x7d1afa7b718fb893db30a3abc0cfc608aacfebb0",
},
// Polygon Amoy
80002: {
currencyIcon: POL,
icon: POLYGON_ICON,
wrappedToken: "0xa5733b3a8e62a8faf43b0376d5faf46e89b3033e",
},
// Base
8453: {
currencyIcon: ETHER,
Expand Down Expand Up @@ -92,5 +104,5 @@ export const CHAIN_INFO: Record<number, ChainInfo> = {
currencyIcon: ETHER,
icon: ETHEREUM_ICON,
wrappedToken: "0xfff9976782d46cc05630d1f6ebab18b2324d6b14",
},
}
};