diff --git a/src/core/scripts/verify.js b/src/core/scripts/verify.js index c6716a4ea..98d61b9f6 100644 --- a/src/core/scripts/verify.js +++ b/src/core/scripts/verify.js @@ -26,7 +26,7 @@ async function main() { await hre.run("verify:verify", { address: poolDeployer, constructorArguments: [ - factory, + deploysData.factory, vaultAddress ], }); diff --git a/src/periphery/contracts/test/NFTDescriptorTest.sol b/src/periphery/contracts/test/NFTDescriptorTest.sol index df93eff82..9a2e91de4 100644 --- a/src/periphery/contracts/test/NFTDescriptorTest.sol +++ b/src/periphery/contracts/test/NFTDescriptorTest.sol @@ -5,6 +5,7 @@ pragma abicoder v2; import '../libraries/NFTDescriptor.sol'; import '../libraries/NFTSVG.sol'; import '../libraries/HexStrings.sol'; +import '@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol'; contract NFTDescriptorTest { using HexStrings for uint256; diff --git a/src/periphery/hardhat.config.ts b/src/periphery/hardhat.config.ts index 1d35331af..f02552f23 100644 --- a/src/periphery/hardhat.config.ts +++ b/src/periphery/hardhat.config.ts @@ -1,7 +1,6 @@ import '@nomicfoundation/hardhat-toolbox'; import 'hardhat-output-validator'; import 'hardhat-contract-sizer'; -import 'hardhat-dependency-compiler'; import 'solidity-docgen'; import baseConfig from '../../hardhat.base.config'; import { task } from 'hardhat/config'; @@ -89,10 +88,6 @@ export default { templates: '../../docs/doc_templates/public', collapseNewlines: true, }, - dependencyCompiler: { - paths: ['@openzeppelin/contracts/proxy/transparent/TransparentUpgradeableProxy.sol'], - keep: true, - }, outputValidator: { runOnCompile: false, exclude: ['contracts/test'],