-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfoundry.toml
26 lines (23 loc) · 839 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
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
[profile.test]
src = 'src'
out = 'out'
libs = ['node_modules','lib']
test = 'test/foundry'
cache_path = 'cache_forge'
remapping = [
'@openzeppelin/=node_modules/@openzeppelin/',
'ds-test/=lib/forge-std/lib/ds-test/src/',
'forge-std/=lib/forge-std/src/',
'hardhat/=node_modules/hardhat/',
'openzeppelin-contracts-06/=node_modules/openzeppelin-contracts-06/',
'openzeppelin-contracts-08/=node_modules/openzeppelin-contracts-08/'
]
via_ir = false
fs_permissions = [{ access = "read", path = "./out"}]
# Gas reports
gas_reports = ["*"]
[rpc_endpoints]
localhost = '${LOCALHOST}'
mumbai = '${POLYGON_TESTNET_RPC_URL}'
sepolia = '${SEPOLIA_TESTNET_RPC_URL}'