How to run the Mythril tool for analysis on smart contracts compiled by Hardhat?
- Hardhat project has the contract(.sol) and artifacts(.json) files .
- Mythril when run with a (.sol) contract uses solc-compiler to compile the contract, whereas solc-compiler does not work for me, and I want to use hardhat to compile and later Mythril to analyze it.
Research-Based