Skip to content

Commit 02edff1

Browse files
committed
➕ Add Etherlink Shadownet Test Network Deployment
Signed-off-by: pcaversaccio <pascal.caversaccio@hotmail.ch>
1 parent 11e1841 commit 02edff1

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

.github/workflows/checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ jobs:
9292
- name: Validate URLs
9393
run: |
9494
awesome_bot ./*.md contracts/*.sol contracts/**/*.sol --request-delay 0.4 \
95-
--white-list https://hardhat.org,https://explorer.autobahn.network,https://testnet.autobahn-explorer.com,https://rinkeby.etherscan.io,https://ropsten.etherscan.io,https://kovan.etherscan.io,https://kovan-optimistic.etherscan.io,https://hyperspace.filfox.info,https://testnet.hecoinfo.com,https://testnet.arbiscan.io,https://goerli.arbiscan.io,https://alpha-blockscout.scroll.io,https://explorer-dapps.shardeum.org,https://explorer-test.arthera.net,https://testnet.explorer.zora.energy,https://explorer.testnet.mantle.xyz,https://goerli.etherscan.io,https://holesky.etherscan.io,https://mumbai.polygonscan.com,https://testnet-zkevm.polygonscan.com,https://goerli.lineascan.build,https://goerli.basescan.org,https://pacific-explorer.testnet.manta.network,https://goerli-optimism.etherscan.io
95+
--white-list https://hardhat.org,https://explorer.autobahn.network,https://testnet.autobahn-explorer.com,https://rinkeby.etherscan.io,https://ropsten.etherscan.io,https://kovan.etherscan.io,https://kovan-optimistic.etherscan.io,https://hyperspace.filfox.info,https://testnet.hecoinfo.com,https://testnet.arbiscan.io,https://goerli.arbiscan.io,https://alpha-blockscout.scroll.io,https://explorer-dapps.shardeum.org,https://explorer-test.arthera.net,https://testnet.explorer.zora.energy,https://explorer.testnet.mantle.xyz,https://goerli.etherscan.io,https://holesky.etherscan.io,https://mumbai.polygonscan.com,https://testnet-zkevm.polygonscan.com,https://goerli.lineascan.build,https://goerli.basescan.org,https://pacific-explorer.testnet.manta.network,https://goerli-optimism.etherscan.io,https://testnet.explorer.etherlink.com

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,5 +165,6 @@ All files | 100 | 100 | 100 | 100 |
165165
- Arena-Z Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://arena-z.blockscout.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
166166
- ZKsync Era Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://sepolia-era.zksync.network/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
167167
- Abstract Testnet (Sepolia): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://sepolia.abscan.org/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
168-
- Etherlink Testnet (Ghostnet): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.explorer.etherlink.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
168+
- Etherlink Testnet (Ghostnet; ⚠️ Deprecated): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.explorer.etherlink.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
169+
- Etherlink Testnet (Shadownet): [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://shadownet.explorer.etherlink.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)
169170
- Monad Testnet: [`0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2`](https://testnet.monadscan.com/address/0x13b0D85CcB8bf860b6b79AF3029fCA081AE9beF2)

hardhat.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -919,7 +919,7 @@ const config: HardhatUserConfig = {
919919
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
920920
},
921921
etherlinkTestnet: {
922-
chainId: 128123,
922+
chainId: 127823,
923923
url: process.env.ETHERLINK_TESTNET_URL || "",
924924
accounts:
925925
process.env.PRIVATE_KEY !== undefined ? [process.env.PRIVATE_KEY] : [],
@@ -2295,10 +2295,10 @@ const config: HardhatUserConfig = {
22952295
},
22962296
{
22972297
network: "etherlinkTestnet",
2298-
chainId: 128123,
2298+
chainId: 127823,
22992299
urls: {
2300-
apiURL: "https://testnet.explorer.etherlink.com/api",
2301-
browserURL: "https://testnet.explorer.etherlink.com",
2300+
apiURL: "https://shadownet.explorer.etherlink.com/api",
2301+
browserURL: "https://shadownet.explorer.etherlink.com",
23022302
},
23032303
},
23042304
{

0 commit comments

Comments
 (0)