Hardhat plugin for enabling on-the-fly network switching within your Hardhat scripts and tasks.
This plugin allows you to switch between networks dynamically during the execution of Hardhat tasks or scripts. This is particularly useful when you need to interact with different Ethereum networks without restarting your Hardhat node or re-running your scripts.
There are two ways to include this code into your project:
To install the plugin, use the following command:
npm install --save-dev hardhat-switch-network
or
yarn add -D hardhat-switch-network
Import the plugin in your hardhat.config.js
:
require("hardhat-switch-network");
Or if you are using TypeScript, in your hardhat.config.ts
:
import "hardhat-switch-network";
imports
into requires
and strip it of types. Voila!Tip 1: remove all the code related to providers you do not use on your project, e.g. if you’re using
ethers
, removeweb3
provider update. Tip 2: if you’re usinghardhat-viem
, you can completely remove code that updates providers forethers
andweb3
There are no required plugins. This plugin automatically detects which underlying Hardhat plugin for interacting with the Ethereum blockchain is being used and hooks into it. You just install this plugin and use it!
Currently supported Hardhat plugins for interacting with the Ethereum blockchain:
This plugin does not add any new Hardhat tasks. It focuses on extending the functionality of existing tasks by enabling network switching.
This plugin extends the Hardhat Runtime Environment by adding a switchNetwork
function. This function allows you to switch to a different network during runtime.
import { HardhatRuntimeEnvironment } from "hardhat/types";
async function main(hre: HardhatRuntimeEnvironment) {
// Switch to a different network
await hre.switchNetwork("sepolia");
// Now you can interact with the new network
}
This plugin does not add any new configuration options to your hardhat.config.js
or hardhat.config.ts
files.
There are no additional steps you need to take for this plugin to work.
Install it and access switchNetwork
through the Hardhat Runtime Environment anywhere you need it (tasks, scripts, tests, etc).
Building and maintaining hardhat-switch-network
requires significant time and effort, and your support can help keep this project alive and thriving. If you find this plugin helpful in your projects, please consider contributing to its ongoing development.
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated. Go to CONTRIBUTING.md to learn about how to set up Hardhat’s development environment.
If you’re able, financial contributions are greatly appreciated and help cover the costs of development and support. You can donate using the following Ethereum-based tokens: ETH, USDT, USDC, wBTC, wETH.
Ethereum Wallet Address:
0xf35d9f86e5f620Dc8a6938b154E37FF23244Dff9
Your support is crucial in ensuring that hardhat-switch-network
continues to grow and serve the community. Thank you for helping keep this project going!
Don’t forget to give the project a star! :star:
Happy coding!