Skip to content

Echidna 1.4.0.0

Compare
Choose a tag to compare
@ggrieco-tob ggrieco-tob released this 18 Mar 20:09
· 513 commits to master since this release
8940832

This is the fifth release of Echidna. With this release, we introduce two new features which can be enabled via various configuration flags:

  • Filtering functions either blacklisting or whitelisting functions to call during a fuzzing campaign using this configuration to blacklist:
filterBlacklist: true
filterFunctions: ["f1", "f2", "f3"]

or this one to whitelist:

filterBlacklist: false
filterFunctions: ["f1", "f2", "f3"]
  • Saving and loading a corpus of transactions (in JSON format) using this configuration:
coverage: true
corpusDir: "corpus"

Note that the corpus directory should be already created.