29 lines
673 B
TOML
29 lines
673 B
TOML
[profile.default]
|
|
src = "contracts"
|
|
out = "out"
|
|
libs = ["lib"]
|
|
#evm_version = "berlin" # for zksync only
|
|
fs_permissions = [
|
|
{access = "read", path="./broadcast"},
|
|
{access = "read", path="./reports"},
|
|
]
|
|
|
|
remappings = [
|
|
"foundry-devops/=lib/foundry-devops/src/",
|
|
'@chainlink/contracts/=lib/chainlink-brownie-contracts/contracts/',
|
|
'@solmate=lib/solmate/src/',
|
|
"@chainlink/=lib/chainlink/contracts/src/v0.8/"
|
|
]
|
|
|
|
[etherscan]
|
|
sepolia = {key = "${ETHERSCAN_API_KEY}"}
|
|
|
|
[rpc_endpoints]
|
|
sepolia = "${SEPOLIA_RPC_URL}"
|
|
|
|
[fuzz]
|
|
runs = 256 # Foundry will run 256 fuzz tests
|
|
|
|
|
|
# See more config options https://github.com/foundry-rs/foundry/tree/master/config
|