- Published on
HardhatError: HH700: Artifact for contract not foundが出た時の対処方法
npx hardhat compile
やnpx hardhat run scripts/deploy.js
で下記のエラーが出た時の対応法を紹介します。
HardhatError: HH700: Artifact for contract “ContractExample” not found.
すでに、contractがあるにもかかわらず、うまくcompileできない場合があります。 その場合はキャッシュが残っているのが原因であるので、
npx hardhat clean
とやってあげれば、キャッシュがクリアされて、無事動作するようになります。
参考:HardhatError: HH700: Artifact for contract “HelloWorld” not found