-
Notifications
You must be signed in to change notification settings - Fork 1
/
brownie-config.yaml
26 lines (24 loc) · 1.01 KB
/
brownie-config.yaml
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
# secrets management via .env (excluded via .gitignore)
dotenv: .env
# brownie default values made explicit
compiler:
evm_version: null
solc:
# 0.8.2 doesn't work with chainlink operator (needs ^0.7.0)
# version: 0.7.6
version: 0.8.2
optimizer:
enabled: true
runs: 200
# https://eth-brownie.readthedocs.io/en/stable/compile.html#compiler-settings
remappings:
- "@openzeppelin=OpenZeppelin/[email protected]"
- "@chainlink=smartcontractkit/[email protected]"
# packages below will be added to brownie
# you may use 'brownie pm list' after 'brownie compile'
# to list the packages installed via the dependency list below
dependencies:
# **Important**: If you update any version here, please also update them in .vscode/settings.json section 'solidity.remappingsUnix'
# github dependency format: <owner>/<repository>@<release>
- OpenZeppelin/[email protected]
- smartcontractkit/[email protected]