Skip to content

Commit

Permalink
fix(foundry): latest config values
Browse files Browse the repository at this point in the history
  • Loading branch information
sambacha authored Jun 25, 2024
1 parent 442efcd commit 087ea07
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,10 @@ gas_limit = 9_223_372_036_854_775_807
evm_version = "cancun"
cancun = true

# {@see {@link https://solidity-fr.readthedocs.io/fr/latest/using-the-compiler.html#input-description}
# includes the contract's metadata in the contract's json artifact
# includes the source mappings for compiled bytecode artifact
extra_output = ['irOptimized', 'evm.assembly', 'evm.bytecode', 'evm.generatedSources']
extra_output = ['irOptimized', 'evm.assembly', 'evm.bytecode', 'evm.bytecode.generatedSources']
# emits the output selection as separate json artifact files
extra_output_files = ['metadata']
names = false
Expand All @@ -82,6 +83,8 @@ cbor_metadata = false
sparse_mode = true
ast = false
isolate = false
create2_library_salt = "0x0000000000000000000000000000000000000000000000000000000000000000"
prague = false

# RPC Cache Settings
no_storage_caching = false
Expand Down Expand Up @@ -174,7 +177,7 @@ failure_persist_file = "failures"
# The number of runs that must execute for each invariant test group
runs = 420
# The number of calls executed to attempt to break invariants in one run
depth = 25
depth = 500
# Fails the invariant fuzzing if a revert occurs
fail_on_revert = false
# Allows overriding an unsafe external call when running invariant tests. eg. reentrancy checks
Expand Down

0 comments on commit 087ea07

Please sign in to comment.