Skip to content

Commit

Permalink
feat(testnet): add Amoy
Browse files Browse the repository at this point in the history
  • Loading branch information
AntonKozAllB committed Apr 24, 2024
1 parent 3a13002 commit 7aca7cd
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@
"Timepoint",
"Typepoint",
"futurenet",
"Vals"
"Vals",
"Amoy"
],
"flagWords": [],
"ignorePaths": [
Expand Down
11 changes: 11 additions & 0 deletions src/chains/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,11 @@ export enum ChainSymbol {
*/
MUM = "MUM",

/**
* The Polygon Amoy testnet.
*/
AMO = "AMO",

/**
* The Arbitrum network.
*/
Expand Down Expand Up @@ -157,6 +162,12 @@ export const chainProperties: Record<string, BasicChainProperties> = {
name: "Mumbai",
chainType: ChainType.EVM,
},
[ChainSymbol.AMO]: {
chainSymbol: ChainSymbol.AMO,
chainId: "0x13882",
name: "Amoy",
chainType: ChainType.EVM,
},
[ChainSymbol.OPT]: {
chainSymbol: ChainSymbol.OPT,
chainId: "0xa",
Expand Down

0 comments on commit 7aca7cd

Please sign in to comment.