@@ -10,7 +10,7 @@ The following environment variables can be used to configure the hardhat node:
1010- ` ALCHEMY_TOKEN ` - Token for Alchemy provider
1111- ` ETH_RPC_URL ` - Custom Ethereum RPC URL
1212- ` DONT_SET_CHAIN_ID ` - Set to any value to prevent setting chainId (useful when forking)
13- - ` HARDFORK ` - Specify the hardfork to use (defaults to "cancun ")
13+ - ` HARDFORK ` - Specify the hardfork to use (defaults to "prague ")
1414
1515### Available Node Types
1616
@@ -34,31 +34,31 @@ The Hardhat node comes with the following default configuration:
3434With Infura
3535
3636``` bash
37- docker run -e INFURA_TOKEN=your_token -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.23 .0
37+ docker run -e INFURA_TOKEN=your_token -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.24 .0
3838```
3939
4040With Alchemy:
4141
4242``` bash
43- docker run -e ALCHEMY_TOKEN=your_token -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.23 .0
43+ docker run -e ALCHEMY_TOKEN=your_token -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.24 .0
4444```
4545
4646With custom provider:
4747
4848``` bash
49- docker run -e ETH_RPC_URL=your_url -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.23 .0
49+ docker run -e ETH_RPC_URL=your_url -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.24 .0
5050```
5151
5252If you don't need to fork mainnet, and you only want to work with the ` -scratch ` node:
5353
5454``` bash
55- docker run -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.23 .0-scratch
55+ docker run -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.24 .0-scratch
5656```
5757
5858If you want to fork hoodi use ` -hoodi ` node, for example:
5959
6060``` bash
61- docker run -e ETH_RPC_URL=your_url -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.23 .0-hoodi
61+ docker run -e ETH_RPC_URL=your_url -p 8545:8545 -it --rm ghcr.io/lidofinance/hardhat-node:2.24 .0-hoodi
6262```
6363
6464### Forking fork chainId issue
0 commit comments