Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 802 Bytes

README.md

File metadata and controls

39 lines (25 loc) · 802 Bytes

hardhat-change-network

Allows changing the current network in Hardhat.

Useful for multi-chain projects, where switching between two networks in a script may be desirable.

Warning: This is a bit of a hack, some modules may break.

Installation

yarn add hardhat-change-network

Import the plugin in your hardhat.config.js:

require("hardhat-change-network");

Or if you are using TypeScript, in your hardhat.config.ts:

import "hardhat-change-network";

Usage

Change the network to any network defined in hardhat.config.js with this simple call:

hre.changeNetwork('goerli');

You can also use this library to retrieve a standard web3 provider object for a given network:

const provider = hre.getProvider('goerli');