Skip to content

Commit 1e687a9

Browse files
fixup! hardhat version
1 parent bc8c947 commit 1e687a9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/externalTests/gp2.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function gp2_test
6969
# We require to install hardhat 2.20.0 due to support for evm version cancun, otherwise we get the following error:
7070
# Invalid value {"blockGasLimit":12500000,"hardfork":"cancun","allowUnlimitedContractSize":true} for HardhatConfig.networks.hardhat - Expected a value of type HardhatNetworkConfig.
7171
# See: https://github.com/NomicFoundation/hardhat/issues/4176
72-
yarn add hardhat@2.20.0
72+
yarn add hardhat
7373

7474
# Ignore bench directory which fails to compile with current hardhat and ethers versions.
7575
# bench/trace/gas.ts:123:19 - error TS2339: Property 'equals' does not exist on type 'Uint8Array'.

test/externalTests/pool-together.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ function pool_together_test
6868
yarn install
6969
# Hardhat 2.20.0 is the last version that works. Newer versions throw this error:
7070
# Unexpected config HardhatConfig.networks.hardhat.initialBaseFeePerGas found - This field is only valid for networks with EIP-1559. Try a newer hardfork or remove it.
71-
yarn add hardhat@2.20.0
71+
yarn add hardhat
7272

7373
# These come with already compiled artifacts. We want them recompiled with latest compiler.
7474
rm -r node_modules/@pooltogether/yield-source-interface/artifacts/

test/externalTests/uniswap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ function uniswap_test
9393
# We set hardhat version to 2.20.0 since version 2.21.0 has issues with solidity-coverage plugin
9494
# that often causes out-of-memory errors.
9595
# See hardhat note about the issue here: https://github.com/NomicFoundation/hardhat/releases/tag/hardhat@2.21.0
96-
pnpm install hardhat@2.20.0
96+
pnpm install hardhat
9797

9898
replace_version_pragmas
9999

test/externalTests/zeppelin.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ function zeppelin_test
108108
# We require to install hardhat 2.20.0 due to support for evm version cancun, otherwise we get the following error:
109109
# Invalid value {"blockGasLimit":10000000,"allowUnlimitedContractSize":true,"hardfork":"cancun"} for HardhatConfig.networks.hardhat - Expected a value of type HardhatNetworkConfig.
110110
# See: https://github.com/NomicFoundation/hardhat/issues/4176
111-
npm install hardhat@2.20.0
111+
npm install hardhat
112112

113113
replace_version_pragmas
114114
for preset in $SELECTED_PRESETS; do

0 commit comments

Comments
 (0)