Skip to content

Commit 0880a64

Browse files
committed
➕ Add IoTeX/HYCHAIN Test and Main Networks
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
1 parent 20ce3e5 commit 0880a64

File tree

4 files changed

+78
-58
lines changed

4 files changed

+78
-58
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,8 @@ The current available networks are:
255255
- `monadTestnet`
256256
- `cornTestnet`
257257
- `arenazTestnet`
258+
- `iotexTestnet`
259+
- `hychainTestnet`
258260
- **EVM-Based Production Networks:**
259261
- `ethMain`
260262
- `bscMain`
@@ -323,6 +325,8 @@ The current available networks are:
323325
- `berachainMain`
324326
- `cornMain`
325327
- `arenazMain`
328+
- `iotexMain`
329+
- `hychainMain`
326330

327331
> [!IMPORTANT]
328332
> Note that you must ensure that your deployment account has sufficient funds on **all** target networks.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "xdeployer",
3-
"version": "3.1.11",
3+
"version": "3.1.12",
44
"description": "Hardhat plugin to deploy your smart contracts across multiple EVM chains with the same deterministic address.",
55
"author": "Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>",
66
"license": "MIT",
@@ -58,7 +58,7 @@
5858
"prettier-plugin-solidity": "^1.4.2",
5959
"ts-node": "^10.9.2",
6060
"typescript": "^5.8.2",
61-
"typescript-eslint": "^8.26.0"
61+
"typescript-eslint": "^8.26.1"
6262
},
6363
"peerDependencies": {
6464
"@nomicfoundation/hardhat-ethers": "^3.0.8",

pnpm-lock.yaml

Lines changed: 56 additions & 56 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/utils/networks.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,14 @@ export const networksInfo = {
173173
url: "https://arena-z.blockscout.com",
174174
chainId: 9897,
175175
},
176+
iotexTestnet: {
177+
url: "https://testnet.iotexscan.io",
178+
chainId: 4690,
179+
},
180+
hychainTestnet: {
181+
url: "https://testnet.explorer.hychain.com",
182+
chainId: 29112,
183+
},
176184
ethMain: { url: "https://etherscan.io", chainId: 1 },
177185
bscMain: { url: "https://bscscan.com", chainId: 56 },
178186
optimismMain: { url: "https://optimistic.etherscan.io", chainId: 10 },
@@ -312,6 +320,14 @@ export const networksInfo = {
312320
url: "https://explorer.arena-z.gg",
313321
chainId: 7897,
314322
},
323+
iotexMain: {
324+
url: "https://iotexscan.io",
325+
chainId: 4689,
326+
},
327+
hychainMain: {
328+
url: "https://explorer.hychain.com",
329+
chainId: 2911,
330+
},
315331
} as const;
316332

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

0 commit comments

Comments
 (0)