mirror of
https://github.com/0xbow-io/privacy-pools-core.git
synced 2026-01-09 09:27:58 -05:00
37 lines
638 B
TOML
37 lines
638 B
TOML
[fmt]
|
|
line_length = 120
|
|
tab_width = 2
|
|
bracket_spacing = false
|
|
int_types = 'long'
|
|
quote_style = 'single'
|
|
number_underscore = 'thousands'
|
|
multiline_func_header = 'params_first_multi'
|
|
sort_imports = true
|
|
|
|
[profile.default]
|
|
solc_version = '0.8.23'
|
|
libs = ['../../node_modules', 'lib']
|
|
optimizer_runs = 10_000
|
|
|
|
[profile.optimized]
|
|
via_ir = true
|
|
out = 'out-via-ir'
|
|
|
|
[profile.test]
|
|
via_ir = true
|
|
out = 'out-via-ir'
|
|
|
|
[profile.docs]
|
|
src = 'src/interfaces/'
|
|
|
|
[fuzz]
|
|
runs = 1000
|
|
|
|
[rpc_endpoints]
|
|
mainnet = "${MAINNET_RPC}"
|
|
sepolia = "${SEPOLIA_RPC}"
|
|
|
|
[etherscan]
|
|
mainnet = { key = "${ETHERSCAN_API_KEY}" }
|
|
sepolia = { key = "${ETHERSCAN_API_KEY}" }
|