
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
@keep-network/hardhat-local-networks-config
Advanced tools
Allow loading network configs for Hardhat projects from external file.
This plugin allows you to specify a local configuration file to populate the Hardhat's networks config. This means users can keep critical information stored locally without risking it to the project's devs or users. For example, you can keep your providers keys or private keys in a secured directory without exposing them.
Install dependency from NPM:
npm install hardhat-local-networks-config-plugin hardhat
And add the following statement to your hardhat.config.js:
require('hardhat-local-networks-config-plugin')
Or, if you are using TypeScript, add this to your hardhat.config.ts:
import 'hardhat-local-networks-config-plugin';
This plugin does not require any extra plugin.
This plugin creates no additional tasks.
This plugin does not perform any environment extension.
This plugin extends the HardhatUserConfig object with an optional localNetworksConfig field.
This is an example of how to set it:
module.exports = {
localNetworksConfig: '~/.hardhat/networks.ts'
}
In case a localNetworksConfig is not provided, the plugin will try to read it from ~/.hardhat/networks.json.
Note that both JS/TS and JSON formats are supported.
The local configuration file should support the following interface, any other field will be simply ignored:
export interface LocalNetworksConfig {
networks?: NetworksUserConfig
defaultConfig?: NetworkUserConfig
}
Where NetworksUserConfig and NetworkUserConfig are base types defined by Hardhat.
In case there is a conflict between any of the local network configs, the default one, or the ones defined in your project, the following list of priorities will be enforced:
localNetworksConfig).~/.hardhat/networks.json).A local configuration file could look as follows:
{
"networks": {
"rinkeby": {
"gasMultiplier": 2,
"accounts": ["0x12..56","0xab..cd"],
"url": "https://rinkeby.infura.io/v3/<API_KEY>"
},
"mainnet": {
"accounts": ["0x12..56","0xab..cd"],
"url": "https://mainnet.infura.io/v3/<API_KEY>"
}
},
"defaultConfig": {
"gasPrice": "auto"
}
}
FAQs
Local networks config plugin for Hardhat
The npm package @keep-network/hardhat-local-networks-config receives a total of 106 weekly downloads. As such, @keep-network/hardhat-local-networks-config popularity was classified as not popular.
We found that @keep-network/hardhat-local-networks-config demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.