Skip to content

Commit 8562bfa

Browse files
committed
➕ Add Morph Hoodi Test Network Deployment
Signed-off-by: pcaversaccio <pascal.caversaccio@hotmail.ch>
1 parent d01a2fc commit 8562bfa

File tree

3 files changed

+14
-17
lines changed

3 files changed

+14
-17
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2237,7 +2237,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
22372237
- [Sonic](https://sonicscan.org/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22382238
- [EVM on Flow](https://evm.flowscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22392239
- [Ink](https://explorer.inkonchain.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2240-
- [Morph](https://explorer.morphl2.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2240+
- [Morph](https://explorer.morph.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22412241
- [Shape](https://shapescan.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22422242
- [Etherlink](https://explorer.etherlink.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22432243
- [Soneium](https://soneium.blockscout.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
@@ -2331,7 +2331,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
23312331
- [Sonic Testnet (Blaze)](https://testnet.sonicscan.org/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23322332
- [EVM on Flow Testnet](https://evm-testnet.flowscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23332333
- [Ink Sepolia Testnet](https://explorer-sepolia.inkonchain.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2334-
- [Morph Holešky Testnet](https://explorer-holesky.morphl2.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2334+
- [Morph Hoodi Testnet](https://explorer-hoodi.morph.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23352335
- [Shape Sepolia Testnet](https://sepolia.shapescan.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23362336
- [Etherlink Testnet (Shadownet)](https://shadownet.explorer.etherlink.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
23372337
- [Soneium Sepolia Testnet (Minato)](https://soneium-minato.blockscout.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

deployments/deployments.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@
463463
"name": "Morph",
464464
"chainId": 2818,
465465
"urls": [
466-
"https://explorer.morphl2.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
466+
"https://explorer.morph.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
467467
]
468468
},
469469
{
@@ -1103,10 +1103,10 @@
11031103
]
11041104
},
11051105
{
1106-
"name": "Morph Holešky Testnet",
1107-
"chainId": 2810,
1106+
"name": "Morph Hoodi Testnet",
1107+
"chainId": 2910,
11081108
"urls": [
1109-
"https://explorer-holesky.morphl2.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
1109+
"https://explorer-hoodi.morph.network/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
11101110
]
11111111
},
11121112
{

hardhat.config.ts

Lines changed: 8 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -831,16 +831,13 @@ const config: HardhatUserConfig = {
831831
accounts,
832832
},
833833
morphTestnet: {
834-
chainId: 2810,
835-
url: vars.get(
836-
"MORPH_TESTNET_URL",
837-
"https://rpc-quicknode-holesky.morphl2.io",
838-
),
834+
chainId: 2910,
835+
url: vars.get("MORPH_TESTNET_URL", "https://rpc-hoodi.morph.network"),
839836
accounts,
840837
},
841838
morphMain: {
842839
chainId: 2818,
843-
url: vars.get("MORPH_MAINNET_URL", "https://rpc-quicknode.morphl2.io"),
840+
url: vars.get("MORPH_MAINNET_URL", "https://rpc-quicknode.morph.network"),
844841
accounts,
845842
},
846843
shapeTestnet: {
@@ -2372,16 +2369,16 @@ const config: HardhatUserConfig = {
23722369
network: "morph",
23732370
chainId: 2818,
23742371
urls: {
2375-
apiURL: "https://explorer.morphl2.io/api",
2376-
browserURL: "https://explorer.morphl2.io",
2372+
apiURL: "https://explorer-api.morph.network/api",
2373+
browserURL: "https://explorer.morph.network",
23772374
},
23782375
},
23792376
{
23802377
network: "morphTestnet",
2381-
chainId: 2810,
2378+
chainId: 2910,
23822379
urls: {
2383-
apiURL: "https://explorer-holesky.morphl2.io/api",
2384-
browserURL: "https://explorer-holesky.morphl2.io",
2380+
apiURL: "https://explorer-api-hoodi.morph.network/api",
2381+
browserURL: "https://explorer-hoodi.morph.network",
23852382
},
23862383
},
23872384
{

0 commit comments

Comments
 (0)