From 2e25d50dedbe6c412849659b0bae1eb9efa20ba0 Mon Sep 17 00:00:00 2001 From: Kirill Kuvshinov Date: Fri, 19 Apr 2024 11:26:55 +0300 Subject: [PATCH] chore: specify paris hardfork explicitly Although hardhat uses paris by default for solc >=0.8.20, this might not be the case in future versions of hardhat. It's better to specify the hardfork explicitly, and update it when the chains are ready. --- hardhat.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/hardhat.config.ts b/hardhat.config.ts index 7a02fd3d..b5fcb34d 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -62,6 +62,7 @@ const config: HardhatUserConfig = { yul: !process.env.CI, }, }, + evmVersion: "paris", outputSelection: { "*": { "*": ["storageLayout"],