-
Notifications
You must be signed in to change notification settings - Fork 1
/
foundry.toml
36 lines (30 loc) · 1.05 KB
/
foundry.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
[profile.default]
src = 'src'
out = 'out'
libs = ['lib']
no_match_test = "test_Custom"
solc = '0.8.13'
fs_permissions = [{ access = "read", path = "./" }]
[etherscan]
fuji = { key = "${SNOWTRACE_API_KEY}", chain = 43113 }
avalanche = { key = "${SNOWTRACE_API_KEY}", chain = 43114 }
bnb_smart_chain_testnet = { key = "${BSCSCAN_API_KEY}", chain = 97 }
bnb_smart_chain = { key = "${BSCSCAN_API_KEY}", chain = 56 }
# To test the SVG generation, use "export FOUNDRY_PROFILE=svgtesting"
[profile.svgtesting]
match_test = "test_Custom_SVGGeneration"
no_match_test = "Foo"
ffi = true
fs_permissions = [{ access = "read-write", path = "./" }]
gas_limit = "18446744073709551615"
[profile.upgradetesting]
match_test = "test_Custom_UpgradeDescriptor"
no_match_test = "Foo"
ffi = true
fs_permissions = [{ access = "read-write", path = "./" }]
[profile.ogmigration]
match_test = "test_Custom_MigrateOGs"
no_match_test = "Foo"
ffi = true
fs_permissions = [{ access = "read-write", path = "./" }]
# See more config options https://github.com/foundry-rs/foundry/tree/master/config