We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df06547 commit 64e5c1eCopy full SHA for 64e5c1e
packages/sharing-smart-contract/hardhat.config.cjs
@@ -3,8 +3,11 @@ require('@nomicfoundation/hardhat-toolbox');
3
require('@openzeppelin/hardhat-upgrades');
4
require('hardhat-contract-sizer');
5
6
+require('hardhat-dependency-compiler');
7
require('dotenv').config();
8
9
+// TODO format
10
+
11
const { WALLET_PRIVATE_KEY } = process.env;
12
13
const bellecourBase = {
@@ -87,4 +90,9 @@ module.exports = {
87
90
},
88
91
89
92
93
+ dependencyCompiler: {
94
+ paths: [
95
+ '@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol',
96
+ ],
97
+ },
98
};
0 commit comments