foundry.toml 252 B

1234567891011121314
  1. [profile.default]
  2. solc_version = '0.8.24'
  3. evm_version = 'cancun'
  4. optimizer = true
  5. optimizer-runs = 200
  6. src = 'contracts'
  7. out = 'out'
  8. libs = ['node_modules', 'lib']
  9. test = 'test'
  10. cache_path = 'cache_forge'
  11. [fuzz]
  12. runs = 5000
  13. max_test_rejects = 150000