From 7d78545534415d39254897b1ea01fe8ba864a429 Mon Sep 17 00:00:00 2001 From: Corey Rice Date: Tue, 5 Dec 2023 12:31:42 -0300 Subject: [PATCH] fix: update compiler version to support 0.8.20 --- hardhat.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hardhat.config.ts b/hardhat.config.ts index 254fec5c..7f567f0a 100644 --- a/hardhat.config.ts +++ b/hardhat.config.ts @@ -21,7 +21,7 @@ const compilers = { } }, { - version: '0.8.17', + version: '0.6.6', settings: { optimizer: { enabled: true, @@ -47,7 +47,7 @@ const compilers = { }, }, { - version: '0.8.13', + version: '0.8.17', settings: { optimizer: { enabled: true, @@ -60,10 +60,10 @@ const compilers = { }, }, { - version: '0.6.6', + version: '0.8.20', settings: { optimizer: { - enabled: !process.env.CI, + enabled: true, }, outputSelection: { '*': { @@ -71,7 +71,7 @@ const compilers = { }, }, }, - }, + } ], }