Skip to content

Commit 1671513

Browse files
committed
➕ Add Celo Test Network Deployment
Signed-off-by: Pascal Marco Caversaccio <pascal.caversaccio@hotmail.ch>
1 parent 63fb291 commit 1671513

File tree

6 files changed

+24
-31
lines changed

6 files changed

+24
-31
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2278,7 +2278,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
22782278
- [Avalanche Testnet (Fuji)](https://testnet.snowscan.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22792279
- [Gnosis Chain Testnet (Chiado)](https://gnosis-chiado.blockscout.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22802280
- [Moonbeam Testnet (Moonbase Alpha)](https://moonbase.moonscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2281-
- [Celo Testnet (Alfajores)](https://alfajores.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
2281+
- [Celo Sepolia Testnet](https://sepolia.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22822282
- [Aurora Testnet](https://explorer.testnet.aurora.dev/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22832283
- [Harmony Testnet](https://explorer.testnet.harmony.one/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
22842284
- [Fuse Network Testnet (Spark)](https://explorer.fusespark.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)

deployments/deployments.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -719,11 +719,10 @@
719719
]
720720
},
721721
{
722-
"name": "Celo Testnet (Alfajores)",
723-
"chainId": 44787,
722+
"name": "Celo Sepolia Testnet",
723+
"chainId": 11142220,
724724
"urls": [
725-
"https://alfajores.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
726-
"https://repo.sourcify.dev/44787/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
725+
"https://sepolia.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
727726
]
728727
},
729728
{

hardhat.config.ts

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ const config: HardhatUserConfig = {
243243
),
244244
accounts,
245245
},
246-
alfajores: {
247-
chainId: 44787,
246+
celoTestnet: {
247+
chainId: 11142220,
248248
url: vars.get(
249249
"CELO_TESTNET_URL",
250-
"https://alfajores-forno.celo-testnet.org",
250+
"https://forno.celo-sepolia.celo-testnet.org",
251251
),
252252
accounts,
253253
},
@@ -1177,7 +1177,7 @@ const config: HardhatUserConfig = {
11771177
moonbaseAlpha: vars.get("MOONBEAM_API_KEY", ""),
11781178
// For Celo testnet & mainnet
11791179
celo: vars.get("CELO_API_KEY", ""),
1180-
alfajores: vars.get("CELO_API_KEY", ""),
1180+
celoTestnet: vars.get("CELO_API_KEY", ""),
11811181
// For Harmony testnet & mainnet
11821182
harmony: vars.get("HARMONY_API_KEY", ""),
11831183
harmonyTestnet: vars.get("HARMONY_API_KEY", ""),
@@ -1435,11 +1435,11 @@ const config: HardhatUserConfig = {
14351435
},
14361436
},
14371437
{
1438-
network: "alfajores",
1439-
chainId: 44787,
1438+
network: "celoTestnet",
1439+
chainId: 11142220,
14401440
urls: {
1441-
apiURL: "https://api-alfajores.celoscan.io/api",
1442-
browserURL: "https://alfajores.celoscan.io",
1441+
apiURL: "https://api-sepolia.celoscan.io/api",
1442+
browserURL: "https://sepolia.celoscan.io",
14431443
},
14441444
},
14451445
{

interface/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"next-seo": "^6.8.0",
5656
"postcss": "^8.5.6",
5757
"prettier": "^3.6.2",
58-
"prettier-plugin-tailwindcss": "^0.6.14",
58+
"prettier-plugin-tailwindcss": "^0.7.0",
5959
"tailwindcss": "^4.1.14",
6060
"typescript": "^5.9.3",
6161
"typescript-eslint": "^8.46.1"

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
"deploy:moonbasealpha": "npx hardhat run --no-compile --network moonbaseAlpha scripts/deploy.ts",
6868
"deploy:moonriver": "npx hardhat run --no-compile --network moonriver scripts/deploy.ts",
6969
"deploy:moonbeam": "npx hardhat run --no-compile --network moonbeam scripts/deploy.ts",
70-
"deploy:alfajores": "npx hardhat run --no-compile --network alfajores scripts/deploy.ts",
70+
"deploy:celotestnet": "npx hardhat run --no-compile --network celoTestnet scripts/deploy.ts",
7171
"deploy:celo": "npx hardhat run --no-compile --network celo scripts/deploy.ts",
7272
"deploy:auroratestnet": "npx hardhat run --no-compile --network auroraTestnet scripts/deploy.ts",
7373
"deploy:auroramain": "npx hardhat run --no-compile --network auroraMain scripts/deploy.ts",

pnpm-lock.yaml

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

0 commit comments

Comments
 (0)