Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2278,7 +2278,7 @@ To verify a deployed [`CreateX`](./src/CreateX.sol) contract on a block explorer
- [Avalanche Testnet (Fuji)](https://testnet.snowscan.xyz/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Gnosis Chain Testnet (Chiado)](https://gnosis-chiado.blockscout.com/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Moonbeam Testnet (Moonbase Alpha)](https://moonbase.moonscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Celo Testnet (Alfajores)](https://alfajores.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Celo Sepolia Testnet](https://sepolia.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Aurora Testnet](https://explorer.testnet.aurora.dev/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Harmony Testnet](https://explorer.testnet.harmony.one/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
- [Fuse Network Testnet (Spark)](https://explorer.fusespark.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed)
Expand Down
7 changes: 3 additions & 4 deletions deployments/deployments.json
Original file line number Diff line number Diff line change
Expand Up @@ -719,11 +719,10 @@
]
},
{
"name": "Celo Testnet (Alfajores)",
"chainId": 44787,
"name": "Celo Sepolia Testnet",
"chainId": 11142220,
"urls": [
"https://alfajores.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed",
"https://repo.sourcify.dev/44787/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
"https://sepolia.celoscan.io/address/0xba5Ed099633D3B313e4D5F7bdc1305d3c28ba5Ed"
]
},
{
Expand Down
16 changes: 8 additions & 8 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -243,11 +243,11 @@ const config: HardhatUserConfig = {
),
accounts,
},
alfajores: {
chainId: 44787,
celoTestnet: {
chainId: 11142220,
url: vars.get(
"CELO_TESTNET_URL",
"https://alfajores-forno.celo-testnet.org",
"https://forno.celo-sepolia.celo-testnet.org",
),
accounts,
},
Expand Down Expand Up @@ -1177,7 +1177,7 @@ const config: HardhatUserConfig = {
moonbaseAlpha: vars.get("MOONBEAM_API_KEY", ""),
// For Celo testnet & mainnet
celo: vars.get("CELO_API_KEY", ""),
alfajores: vars.get("CELO_API_KEY", ""),
celoTestnet: vars.get("CELO_API_KEY", ""),
// For Harmony testnet & mainnet
harmony: vars.get("HARMONY_API_KEY", ""),
harmonyTestnet: vars.get("HARMONY_API_KEY", ""),
Expand Down Expand Up @@ -1435,11 +1435,11 @@ const config: HardhatUserConfig = {
},
},
{
network: "alfajores",
chainId: 44787,
network: "celoTestnet",
chainId: 11142220,
urls: {
apiURL: "https://api-alfajores.celoscan.io/api",
browserURL: "https://alfajores.celoscan.io",
apiURL: "https://api-sepolia.celoscan.io/api",
browserURL: "https://sepolia.celoscan.io",
},
},
{
Expand Down
2 changes: 1 addition & 1 deletion interface/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"next-seo": "^6.8.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.6.14",
"prettier-plugin-tailwindcss": "^0.7.0",
"tailwindcss": "^4.1.14",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.1"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"deploy:moonbasealpha": "npx hardhat run --no-compile --network moonbaseAlpha scripts/deploy.ts",
"deploy:moonriver": "npx hardhat run --no-compile --network moonriver scripts/deploy.ts",
"deploy:moonbeam": "npx hardhat run --no-compile --network moonbeam scripts/deploy.ts",
"deploy:alfajores": "npx hardhat run --no-compile --network alfajores scripts/deploy.ts",
"deploy:celotestnet": "npx hardhat run --no-compile --network celoTestnet scripts/deploy.ts",
"deploy:celo": "npx hardhat run --no-compile --network celo scripts/deploy.ts",
"deploy:auroratestnet": "npx hardhat run --no-compile --network auroraTestnet scripts/deploy.ts",
"deploy:auroramain": "npx hardhat run --no-compile --network auroraMain scripts/deploy.ts",
Expand Down
26 changes: 10 additions & 16 deletions pnpm-lock.yaml

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

Loading