generated from KEI-finance/contracts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
36 lines (32 loc) · 1.11 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", "dependencies"]
fs_permissions = [{ access = "read", path = "./"}]
optimizer = true
optimizer-runs = 200
cbor_metadata = false
bytecode_hash = "none"
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
[fmt]
line_length = 120
tab_width = 4
bracket_spacing = false
int_types = 'long'
multiline_func_header = 'attributes_first'
quote_style = 'double'
number_underscore = 'preserve'
single_line_statement_blocks = 'preserve'
ignore = ["src/console.sol", "src/console2.sol"]
[rpc_endpoints]
sepolia = "https://sepolia.infura.io/v3/${INFURA_API_KEY}"
mainnet = "https://mainnet.infura.io/v3/${INFURA_API_KEY}"
base_mainnet = "https://base-mainnet.infura.io/v3/${INFURA_API_KEY}"
base_sepolia = "https://base-sepolia.infura.io/v3/${INFURA_API_KEY}"
arbitrum = "https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}"
arbitrum_sepolia = "https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}"
[dependencies]
"@kei-fi-testing-lib" = "1.0.2"
"@openzeppelin-contracts" = "5.0.2"
forge-std = "1.9.4"
"@openzeppelin-contracts-upgradeable" = "5.0.2"