Skip to content

Commit

Permalink
fix: build
Browse files Browse the repository at this point in the history
  • Loading branch information
arthcp committed Feb 10, 2025
1 parent f5cca35 commit 344ec98
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -351,19 +351,19 @@ const config: HardhatUserConfig = {
},
...liveNetworks,
zeroTestnet: {
url: process.env.ZERO_SEPOLIA_RPC,
url: process.env.ZERO_SEPOLIA_RPC || "",
zksync: true,
ethNetwork: "sepolia",
verifyURL: "https://zerion-testnet-proofs.explorer.caldera.xyz/api",
},
zero: {
url: process.env.ZERO_RPC,
url: process.env.ZERO_RPC || "",
zksync: true,
ethNetwork: "mainnet",
verifyURL: "https://zero-network.calderaexplorer.xyz/api",
},
zksync: {
url: process.env.ZKSYNC_RPC,
url: process.env.ZKSYNC_RPC || "",
zksync: true,
ethNetwork: "mainnet",
verifyURL: "",
Expand Down

0 comments on commit 344ec98

Please sign in to comment.