├── .gitignore ├── .gitmodules ├── README.md ├── foundry.toml └── src ├── HarveyBaz.sol ├── HarveyFoo.sol ├── ILFCrowdsale.sol └── test └── Benchmarks.t.sol /.gitignore: -------------------------------------------------------------------------------- 1 | cache/ 2 | out/ 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /foundry.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/foundry.toml -------------------------------------------------------------------------------- /src/HarveyBaz.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/src/HarveyBaz.sol -------------------------------------------------------------------------------- /src/HarveyFoo.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/src/HarveyFoo.sol -------------------------------------------------------------------------------- /src/ILFCrowdsale.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/src/ILFCrowdsale.sol -------------------------------------------------------------------------------- /src/test/Benchmarks.t.sol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mds1/solidity-fuzzing-benchmarks/HEAD/src/test/Benchmarks.t.sol --------------------------------------------------------------------------------