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.