From 04d974421ebb687a8ba81874fb7c60167d9143a6 Mon Sep 17 00:00:00 2001 From: 2facedsquid <57157144+2facedsquid@users.noreply.github.com> Date: Mon, 12 Jun 2023 13:55:48 +0200 Subject: [PATCH] Update L15-Building-MEV-Bot.md newest version of hardhat,@nomicfoundation/hardhat-toolbox packages got conflicting changes (in the ethers.js lib) with the @flashbots/ethers-provider-bundle packages thus a downgrade is needed --- L15-Building-MEV-Bot.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/L15-Building-MEV-Bot.md b/L15-Building-MEV-Bot.md index fd9ca36..ad31a6c 100644 --- a/L15-Building-MEV-Bot.md +++ b/L15-Building-MEV-Bot.md @@ -24,7 +24,7 @@ Let's start setting up Hardhat inside the `flashbots` directory. ```bash cd flashbots npm init --yes -npm install --save-dev hardhat @nomicfoundation/hardhat-toolbox +npm install --save-dev hardhat@2.12.0 @nomicfoundation/hardhat-toolbox@2.0.2 npx hardhat ```