Add foundry.toml to zero-ex directory

This commit is contained in:
Michael Zhu
2022-05-18 13:36:29 -07:00
parent f55eaa867b
commit 275542b6b2
2 changed files with 13 additions and 0 deletions

6
.gitignore vendored
View File

@@ -173,6 +173,12 @@ contracts/zero-ex/test/generated-wrappers/
contracts/treasury/generated-wrappers/
contracts/treasury/test/generated-wrappers/
# foundry artifacts
contracts/zero-ex/foundry-artifacts/
# foundry cache
contracts/zero-ex/foundry-cache/
# Doc README copy
packages/*/docs/README.md

View File

@@ -0,0 +1,7 @@
[default]
src = 'contracts/src'
out = 'foundry-artifacts'
libs = ['../utils/contracts/src/']
remappings = ['@0x/contracts-utils/=../utils/', '@0x/contracts-erc20/=../erc20/']
cache_path = 'foundry-cache'
optimizer_runs = 1000000