forked from OlympusDAO/olympus-contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.dapprc
21 lines (20 loc) · 722 Bytes
/
.dapprc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Make dependencies available
export DAPP_REMAPPINGS="hardhat/=node_modules/hardhat/
@openzeppelin/=node_modules/@openzeppelin/
hardhat-deploy/=node_modules/hardhat-deploy/
ds-test/=test/dapp_test/lib/ds-test/src/"
export DAPP_SRC=test/dapp_test/src
export DAPP_LIB=test/dapp_test/lib
export DAPP_OUT=.dapp/
export DAPP_SOLC_VERSION=0.7.5
export DAPP_BUILD_OPTIMIZE=1
export DAPP_BUILD_OPTIMIZE_RUNS=999999
export DAPP_LINK_TEST_LIBRARIES=0
export DAPP_TEST_VERBOSITY=1
export DAPP_TEST_SMTTIMEOUT=500000
if [ "$DEEP_FUZZ" == "true" ]
then
export DAPP_TEST_FUZZ_RUNS=50000 # Fuzz for a long time if DEEP_FUZZ is set to true.
else
export DAPP_TEST_FUZZ_RUNS=100 # Only fuzz briefly if DEEP_FUZZ is not set to true.
fi