Skip to content

Commit

Permalink
🔁 Update xdeployer Example Values
Browse files Browse the repository at this point in the history
Signed-off-by: Pascal Marco Caversaccio <[email protected]>
  • Loading branch information
pcaversaccio committed Dec 24, 2023
1 parent 6fdde55 commit 737ae46
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .example.networkconfig
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// An example of the network setup for the `xdeployer` plugin (https://github.com/pcaversaccio/xdeployer)

networks: ["sepolia", "optimismTestnet", "arbitrumSepolia"],
rpcUrls: [vars.get("ETH_SEPOLIA_TESTNET_URL", "https://rpc.sepolia.org"), vars.get("OPTIMISM_TESTNET_URL", "https://goerli.optimism.io"), vars.get("ARBITRUM_SEPOLIA_URL", "https://sepolia-rollup.arbitrum.io/rpc")],
networks: ["sepolia", "optimismSepolia", "arbitrumSepolia"],
rpcUrls: [vars.get("ETH_SEPOLIA_TESTNET_URL", "https://rpc.sepolia.org"), vars.get("OPTIMISM_SEPOLIA_URL", "https://sepolia.optimism.io"), vars.get("ARBITRUM_SEPOLIA_URL", "https://sepolia-rollup.arbitrum.io/rpc")],
4 changes: 2 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -602,13 +602,13 @@ const config: HardhatUserConfig = {

// Use the network names specified here: https://github.com/pcaversaccio/xdeployer#configuration
// Use `localhost` or `hardhat` for local testing
networks: ["hardhat", "sepolia", "optimismTestnet"],
networks: ["hardhat", "sepolia", "optimismSepolia"],

// Use the matching env URL with your chosen RPC in the `.env` file
rpcUrls: [
"hardhat",
vars.get("ETH_SEPOLIA_TESTNET_URL", "https://rpc.sepolia.org"),
vars.get("OPTIMISM_TESTNET_URL", "https://goerli.optimism.io"),
vars.get("OPTIMISM_SEPOLIA_URL", "https://sepolia.optimism.io"),
],

// Maximum limit is 15 * 10 ** 6 or 15,000,000. If the deployments are failing, try increasing this number
Expand Down

0 comments on commit 737ae46

Please sign in to comment.