Published on

HardhatError: HH700: Artifact for contract not foundが出た時の対処方法

Authors
  • avatar
    Name
    ssu
    Twitter

npx hardhat compilenpx 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