Skip to content

Commit

Permalink
Merge pull request #13 from waku-org/deploy-local-with-provided-url
Browse files Browse the repository at this point in the history
Add option to provide the RPC URL for a localhost network deployment
  • Loading branch information
stubbsta authored Mar 25, 2024
2 parents a01daa8 + 2354961 commit 1f96610
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
1 change: 1 addition & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
ETHERSCAN_API_KEY=<YOUR_ETHERSCAN_KEY>
SEPOLIA_URL=https://eth-sepolia.alchemyapi.io/v2/<YOUR ALCHEMY KEY>
PRIVATE_KEY=<YOUR_PRIVATE_KEY>
RPC_PROVIDER=http://<RPC_IP>:<RPC_PORT>
11 changes: 9 additions & 2 deletions hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ import "hardhat-gas-reporter";
import "solidity-docgen";

dotenv.config();
const { SEPOLIA_URL, PRIVATE_KEY, ETHERSCAN_API_KEY } = process.env;
const { SEPOLIA_URL, PRIVATE_KEY, ETHERSCAN_API_KEY, RPC_PROVIDER } =
process.env;

const getNetworkConfig = (): NetworksUserConfig | undefined => {
if (SEPOLIA_URL && PRIVATE_KEY) {
Expand All @@ -34,8 +35,14 @@ const getNetworkConfig = (): NetworksUserConfig | undefined => {
url: "http://localhost:8545",
},
};
} else {
const LOCALHOST_PROVIDER = RPC_PROVIDER || "http://localhost:8545";
return {
localhost_integration: {
url: LOCALHOST_PROVIDER,
},
};
}
return undefined;
};

// You need to export an object to set up your config
Expand Down

0 comments on commit 1f96610

Please sign in to comment.