Add option to provide the RPC URL for a localhost network deployment

This commit is contained in:
stubbsta 2024-04-23 14:20:35 +02:00
parent 2e828c37c6
commit a10d1d0de3
No known key found for this signature in database
2 changed files with 10 additions and 2 deletions

View File

@ -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>

View File

@ -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) {
@ -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