Skip to content

Commit

Permalink
feat: migration testnet polygon_mumbai to polygon_amoy
Browse files Browse the repository at this point in the history
  • Loading branch information
sanyu1225 committed Apr 29, 2024
1 parent f0c0e21 commit 6608f57
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,7 @@ npm-debug.log*
yarn-debug.log*
yarn-error.log*

.env
.env

# IntelijIDEA
.idea
6 changes: 3 additions & 3 deletions src/services/evm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,9 @@ export const supportedChains = [
environment: "mainnet",
},
{
name: "Polygon Testnet",
chainId: "0x13881",
rpcUrls: ["https://rpc-mumbai.maticvigil.com/"],
name: "Polygon Amoy Testnet",
chainId: "0x13882",
rpcUrls: ["https://rpc-amoy.polygon.technology/"],
faucet: "https://faucet.polygon.technology/",
environment: "testnet",
},
Expand Down
2 changes: 1 addition & 1 deletion src/types/ChainTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export enum EvmChainId {
Bsc = "0x38",
BscTestnet = "0x61",
Polygon = "0x89",
PolygonTestnet = "0x13881",
PolygonTestnet = "0x13882",
Avalanche = "0xa86a",
AvalancheTestnet = "0xa869",
Arbitrum = "0xa4b1",
Expand Down

0 comments on commit 6608f57

Please sign in to comment.