Skip to content

Commit

Permalink
➕ Add Arena-Z Test and Main Networks
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Feb 13, 2025
1 parent ef0c811 commit a10cf20
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 32 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,6 +254,7 @@ The current available networks are:
- `berachainTestnet`
- `monadTestnet`
- `cornTestnet`
- `arenazTestnet`
- **EVM-Based Production Networks:**
- `ethMain`
- `bscMain`
Expand Down Expand Up @@ -321,6 +322,7 @@ The current available networks are:
- `hemiMain`
- `berachainMain`
- `cornMain`
- `arenazMain`

> [!IMPORTANT]
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks.
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,14 +47,14 @@
"@types/chai": "^4.3.20",
"@types/fs-extra": "^11.0.4",
"@types/mocha": "^10.0.10",
"@types/node": "^22.13.1",
"@types/node": "^22.13.2",
"chai": "^4.5.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"ethers": "^6.13.5",
"hardhat": "^2.22.18",
"mocha": "^11.1.0",
"prettier": "^3.5.0",
"prettier": "^3.5.1",
"prettier-plugin-solidity": "^1.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
Expand Down
56 changes: 28 additions & 28 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/utils/networks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ export const networksInfo = {
chainId: 53302,
},
storyTestnet: {
url: "https://odyssey.storyscan.xyz",
chainId: 1516,
url: "https://aeneid.storyscan.xyz",
chainId: 1315,
},
sonicTestnet: {
url: "https://testnet.sonicscan.org",
Expand Down Expand Up @@ -169,6 +169,10 @@ export const networksInfo = {
url: "https://testnet.cornscan.io",
chainId: 21000001,
},
arenazTestnet: {
url: "https://arena-z.blockscout.com",
chainId: 9897,
},
ethMain: { url: "https://etherscan.io", chainId: 1 },
bscMain: { url: "https://bscscan.com", chainId: 56 },
optimismMain: { url: "https://optimistic.etherscan.io", chainId: 10 },
Expand Down Expand Up @@ -304,6 +308,10 @@ export const networksInfo = {
url: "https://cornscan.io",
chainId: 21000000,
},
arenazMain: {
url: "https://explorer.arena-z.gg",
chainId: 7897,
},
} as const;

// Define a type `SupportedNetwork` that represents the union of all possible network names
Expand Down

0 comments on commit a10cf20

Please sign in to comment.