-
Notifications
You must be signed in to change notification settings - Fork 6
/
.envrc.example
43 lines (30 loc) · 1.03 KB
/
.envrc.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
37
38
39
40
41
42
43
# Used to deploy to testnets
export HDWALLET_MNEMONIC=''
# Used to deploy to testnets
export INFURA_API_KEY=''
# Used to deploy on Arbitrum if RPC used is not Infura
export ARBITRUM_GOERLI_RPC_URL=''
# Used to deploy on Optimism if RPC used is not Infura
export OPTIMISM_GOERLI_RPC_URL=''
# Used to deploy on Mumbai if RPC used is not Infura
export MUMBAI_RPC_URL=''
# Used for verifying contracts on Etherscan
export ETHERSCAN_API_KEY=''
# Used for verifying contracts on Polygonscan
export POLYGONSCAN_API_KEY=''
# Used for verifying contracts on Snowtrace
export SNOWTRACE_API_KEY=''
# Used for verifying contracts on Arbitrum Etherscan
export ARB_ETHERSCAN_API_KEY=''
# Used for verifying contracts on Optimism Etherscan
export OP_ETHERSCAN_API_KEY=''
# Required for forking
export ALCHEMY_URL=''
export FORK_ENABLED=''
# Used to hide deploy logs
export HIDE_DEPLOY_LOG=''
# Used to generate a gas usage report
export REPORT_GAS=''
export COINMARKETCAP_API_KEY=''
# addresses to disburse tokens to
export DISBURSE_ADDRESSES='0x1234,0xabcd'