forked from reserve-protocol/protocol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
36 lines (27 loc) · 1.16 KB
/
.env.example
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
27
28
29
30
31
32
33
34
35
36
# Goerli Infura URL, used for Testnet deployments
GOERLI_RPC_URL='https://goerli.infura.io/v3/your_infura_key'
# Mainnet URL, used for Mainnet forking (Alchemy)
MAINNET_RPC_URL="https://eth-mainnet.alchemyapi.io/v2/your_mainnet_api_key"
# Mnemonic, first address will be used for deployments
MNEMONIC='copy here your mnemonic words'
# Etherscan API - for contract verification
ETHERSCAN_API_KEY=ABC123ABC123ABC123ABC123ABC123ABC1
# WARNING: all of the following will make SLOW a truthy value:
# SLOW=0
# SLOW=1
# SLOW=false
#
# These values are interpreted as Javascript strings, and then used in JS
# for their truthiness value -- so the ONLY falsy values here are '' or "".
# e.g, SLOW='' or SLOW="". The same is true of any boolean-intended env vars
# here: SLOW, FORK, and REPORT_GAS.
# Run slow tests in addition to the default set, if truthy
# SLOW=1
# Run tests and scripts using Mainnet forking - required for integration tests
# FORK=1
# Block to use as default for mainnet forking
MAINNET_BLOCK=14916729
# Select Protocol implementation to run tests for, 0 (Prototype) or 1 (Production)
PROTO_IMPL=0
# Run gas reporter and specific gas tests, if truthy
# REPORT_GAS=1