buidler-verify-helper
v1.0.3
Published
This is a work-around for the solidity bug which sometimes requires that you submit the solc input for your entire contracts directory in order to verify a single contract.
Downloads
6
Readme
buidler-verify-helper
This is a work-around for the solidity bug which sometimes requires that you submit the solc input for your entire contracts directory in order to verify a single contract.
It's a pretty janky solution, but it works.
buidler-verify-helper --prepare --contracts ContractFile.sol
Replaces the paths.sources
field in buidler.config.js with a temporary contract directory and clones only the necessary files for your deployment into the temp contracts directory.
buidler-verify-helper --clean
Restores the original buidler config file and deletes the temp directory
Usage Run the prepare script, then run your deployment scripts, then run the clean script.