-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfoundry.toml
More file actions
41 lines (34 loc) · 1.07 KB
/
foundry.toml
File metadata and controls
41 lines (34 loc) · 1.07 KB
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
37
38
39
40
41
[profile.default]
solc = "0.8.24"
optimizer = true
optimizer_runs = 200
# Required settings for OpenZeppelin Foundry Upgrades
# Source: https://github.com/OpenZeppelin/openzeppelin-foundry-upgrades?tab=readme-ov-file#before-running
ffi = true
ast = true
build_info = true
extra_output = ["storageLayout"]
remappings = [
"forge-std/=lib/forge-std/src/",
"@openzeppelin/contracts/=lib/openzeppelin-contracts-upgradeable/lib/openzeppelin-contracts/contracts/",
"@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
"openzeppelin-foundry-upgrades/=lib/openzeppelin-foundry-upgrades/src/",
"script/=script/",
"src/=src/",
"test/=test/"
]
[fmt]
bracket_spacing = true
[lint]
severity = ["high", "med", "low"]
[doc]
out = "docs"
repository = "https://github.com/evmauth/evmauth-core"
[rpc_endpoints]
localhost = "http://localhost:8545"
radius-testnet = "${RADIUS_TESTNET}"
base-sepolia = "${BASE_SEPOLIA}"
sepolia = "${SEPOLIA}"
[etherscan]
base-sepolia = { key = "${ETHERSCAN_API_KEY}" }
sepolia = { key = "${ETHERSCAN_API_KEY}" }