-
Notifications
You must be signed in to change notification settings - Fork 0
/
foundry.toml
30 lines (25 loc) · 1.06 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
# your can use the init-foundry task to create a foundry.toml file.
# The file will be created using the proper values to make Foundry work well with your Hardhat project.
[profile.default]
src = 'src'
out = 'out'
script = 'scripts'
libs = ['lib', 'node_modules']
test = 'test/foundry'
remappings = [
'forge-std=lib/forge-std/src/',
"@openzeppelin/=lib/openzeppelin-contracts/",
'hyperlane=lib/hyperlane/src/'
]
optimizer_runs = 15000
[fuzz]
runs = 1000
[rpc_endpoints]
# This section lives outside of profiles and defines a table of RPC endpoints, where the key specifies the RPC endpoints's name and the value is the RPC endpoint itself.
# The value can either be a valid RPC endpoint or a reference to an environment variable (wrapped with in ${}).
# These RPC endpoints can be used in tests and Solidity scripts
# mainnet = "${RPC_URL}"
moonbase = "${MOONBASE_RPC_URL}"
[etherscan]
moonbase = { key = "${MOONSCAN_API_KEY}", url = "https://moonbase.moonscan.io/api", chain = 1287 }
# See more config options https://github.com/gakonst/foundry/tree/master/config