From 1df60f5a3f52b1c24ddaa61ea6f27e1da68502da Mon Sep 17 00:00:00 2001 From: Hadrien Croubois Date: Mon, 8 Aug 2022 18:45:59 +0200 Subject: [PATCH] update solidity to 0.8.16 --- solidity/hardhat.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/solidity/hardhat.config.js b/solidity/hardhat.config.js index 6b0287b..a5448d8 100644 --- a/solidity/hardhat.config.js +++ b/solidity/hardhat.config.js @@ -7,7 +7,7 @@ const argv = require('yargs/yargs')(process.argv.slice(2)) coverage: { type: 'boolean', default: false }, report: { type: 'boolean', default: false }, // compilations - compiler: { type: 'string', default: '0.8.15' }, + compiler: { type: 'string', default: '0.8.16' }, hardfork: { type: 'string', default: 'london' }, mode: { type: 'string', choices: [ 'production', 'development' ], default: 'production' }, runs: { type: 'number', default: 200 }, @@ -46,7 +46,7 @@ module.exports = { solidity: { compilers: [ { version: argv.compiler, settings }, - { version: '0.8.15', settings }, + { version: '0.8.16', settings }, { version: '0.7.6', settings }, { version: '0.6.12', settings }, { version: '0.5.16', settings },