-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfoundry.toml
33 lines (31 loc) · 883 Bytes
/
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
[profile.default]
src = "src"
out = "out"
solc = "0.8.19"
libs = ["node_modules", "lib"]
remappings = [
"@axiom-crypto/axiom-std/=lib/axiom-std/src/",
"@axiom-crypto/v2-periphery/=lib/axiom-v2-periphery/src/",
"@openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/",
"forge-std/=lib/forge-std/src/"
]
ffi = true
ast = true
fs_permissions = [
{ access = "read-write", path = ".axiom" },
{ access = "read", path = "app/axiom/data" }
]
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
[rpc_endpoints]
sepolia = "${PROVIDER_URI_SEPOLIA}"
mainnet = "${PROVIDER_URI_MAINNET}"
[fmt]
bracket_spacing = true
int_types = "long"
line_length = 120
multiline_func_header = "attributes_first"
number_underscore = "thousands"
quote_style = "double"
single_line_statement_blocks = "multi"
tab_width = 4
wrap_comments = false