ContractFuzzer icon indicating copy to clipboard operation
ContractFuzzer copied to clipboard

How to create files required in verified_contract_bin_sig (function signature pairs from contract's bin)

Open Harsh30199 opened this issue 2 years ago • 1 comments

Hi,

I am beginner solidity learner, I was trying out your tool for my custom SmartContract but am unable to figure out how to get the information to be specified in verified_contract_bin_sig (function signature pairs from contract's bin) folder given as example in repo.

Harsh30199 avatar Aug 09 '22 14:08 Harsh30199

The bin_sig file contains mapping of the function hashes that are called from inside a particular contract function. You will need to create that file ONLY IF you are calling other contracts' functions from inside your contract function AND you are passing the destination contract address as an argument to a function in your contract. Else, you don't need to create it.

rajguru7 avatar Aug 18 '22 15:08 rajguru7