forked from OpenZeppelin/openzeppelin-foundry-upgrades
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfoundry.toml
22 lines (20 loc) · 814 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
[profile.default]
src = "src"
out = "out"
libs = ["node_modules", "lib"]
build_info = true
extra_output = ["storageLayout"]
[profile.openzeppelin-contracts-v4]
src = "test-profiles/openzeppelin-contracts-v4/src"
test = "test-profiles/openzeppelin-contracts-v4/test"
remappings = [
"@openzeppelin/contracts/=node_modules/@openzeppelin/contracts-v4",
"@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable-v4"
]
[profile.openzeppelin-contracts-v4-with-v5-proxies]
src = "test-profiles/openzeppelin-contracts-v4-with-v5-proxies/src"
test = "test-profiles/openzeppelin-contracts-v4-with-v5-proxies/test"
remappings = [
"@openzeppelin/contracts/=node_modules/@openzeppelin/contracts",
"@openzeppelin/contracts-upgradeable/=node_modules/@openzeppelin/contracts-upgradeable-v4"
]