mirror of
https://github.com/lens-protocol/core.git
synced 2026-01-10 06:38:05 -05:00
31 lines
567 B
TOML
31 lines
567 B
TOML
[profile.default]
|
|
src = 'contracts'
|
|
out = 'out'
|
|
libs = ['node_modules', 'lib']
|
|
test = 'test'
|
|
cache_path = 'forge-cache'
|
|
fs_permissions = [{ access = "read-write", path = "./"}]
|
|
solc_version = '0.8.21'
|
|
evm_version = 'paris'
|
|
optimizer = true
|
|
optimizer_runs = 10
|
|
ignored_error_codes = []
|
|
via_ir = true
|
|
|
|
[rpc_endpoints]
|
|
polygon = "${POLYGON_RPC_URL}"
|
|
mumbai = "${MUMBAI_RPC_URL}"
|
|
|
|
[fuzz]
|
|
runs = 50
|
|
max_test_rejects = 200000
|
|
|
|
[profile.cibuild]
|
|
via_ir = true
|
|
|
|
[profile.citest]
|
|
via_ir = false
|
|
ignored_error_codes = ["license", "code-size"]
|
|
[profile.citest.fuzz]
|
|
runs = 100
|