Compare commits
3 Commits
release-v5
...
eof
| Author | SHA1 | Date | |
|---|---|---|---|
| 252bd536f6 | |||
| d5aff016ae | |||
| 6ea493cbb3 |
7
.gitmodules
vendored
7
.gitmodules
vendored
@ -1,10 +1,9 @@
|
||||
[submodule "lib/forge-std"]
|
||||
branch = v1
|
||||
path = lib/forge-std
|
||||
url = https://github.com/foundry-rs/forge-std
|
||||
[submodule "lib/erc4626-tests"]
|
||||
path = lib/erc4626-tests
|
||||
url = https://github.com/a16z/erc4626-tests.git
|
||||
[submodule "lib/halmos-cheatcodes"]
|
||||
path = lib/halmos-cheatcodes
|
||||
url = https://github.com/a16z/halmos-cheatcodes
|
||||
[submodule "lib/forge-std"]
|
||||
path = lib/forge-std
|
||||
url = https://github.com/foundry-rs/forge-std
|
||||
|
||||
3
eof-solc
Executable file
3
eof-solc
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
docker run --rm -i -v "$(pwd):/app/root" ghcr.io/paradigmxyz/forge-eof:latest "$@"
|
||||
10
foundry.toml
10
foundry.toml
@ -1,14 +1,16 @@
|
||||
[profile.default]
|
||||
solc_version = '0.8.24'
|
||||
evm_version = 'cancun'
|
||||
optimizer = true
|
||||
optimizer-runs = 200
|
||||
src = 'contracts'
|
||||
out = 'out'
|
||||
libs = ['node_modules', 'lib']
|
||||
test = 'test'
|
||||
cache_path = 'cache_forge'
|
||||
|
||||
# settings required for EOF
|
||||
via_ir = true
|
||||
evm_version = "prague"
|
||||
eof_version = 1
|
||||
solc = "./eof-solc"
|
||||
|
||||
[fuzz]
|
||||
runs = 5000
|
||||
max_test_rejects = 150000
|
||||
|
||||
Submodule lib/forge-std updated: ae570fec08...1714bee72e
Reference in New Issue
Block a user