Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ import hardhatPredeploy from 'hardhat-predeploy';
import hardhatExposed from './hardhat/hardhat-exposed/plugin.ts';
import hardhatTranspiler from './hardhat/hardhat-transpiler/plugin.ts';
import hardhatOzContractsHelpers from './hardhat/hardhat-oz-contracts-helpers/plugin.ts';
import hardhatSolx from '@nomicfoundation/hardhat-solx';
import './hardhat/async-test-sanity.js';

// Parameters
import yargs from 'yargs/yargs';
const argv = await yargs()
.env('')
.options({
compiler: { type: 'string', default: '0.8.31' },
compiler: { type: 'string', default: '0.8.33' },
src: { type: 'string', default: 'contracts' },
runs: { type: 'number', default: 200 },
ir: { type: 'boolean', default: false },
Expand All @@ -35,6 +36,7 @@ export default defineConfig({
hardhatMocha,
hardhatNetworkHelpers,
hardhatPredeploy,
hardhatSolx,
// Local plugins
hardhatExposed,
hardhatTranspiler,
Expand Down Expand Up @@ -84,6 +86,7 @@ export default defineConfig({
},
'*': {
'transient-storage': 'off',
5726: 'off',
default: 'error',
},
},
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,8 @@
"glob": "^13.0.0",
"globals": "^17.0.0",
"graphlib": "^2.1.8",
"hardhat": "^3.1.8",
"@nomicfoundation/hardhat-solx": "^3.0.0",
"hardhat": "^3.2.0",
"hardhat-ignore-warnings": "^0.3.0",
"hardhat-predeploy": "^1.0.1",
"husky": "^9.1.7",
Expand Down