forked from OlympusDAO/olympus-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env.example
53 lines (43 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
####### API KEYS #######
#
# in development environment NONE of the below api keys are required
# if you leave this file BLANK the app will run via the `ethers` community api key
# the only side effect may be some latency
#
# add your ALCHEMY API KEY
# - Alchemy IDs are only used as fallbacks (in conjunction with INFURA_IDS)
# - multiple IDS should be separated by whitespace
# - in development environment app will run without an ALCHEMY API KEY
# - you can pick up Alchemy API Keys at https://auth.alchemyapi.io/
REACT_APP_ETHEREUM_ALCHEMY_IDS=""
REACT_APP_ARBITRUM_ALCHEMY_IDS=""
REACT_APP_POLYGON_ALCHEMY_IDS=""
# add your INFURA ID
# - Infura IDs are only used as fallbacks (in conjunction with ALCHEMY_IDS)
# - multiple IDS should be separated by whitespace
# - you can pick up INFURA_IDS at https://infura.io/
REACT_APP_INFURA_IDS=""
# add a TESTNET ALCHEMY API KEY
# - only 1 ID is required, multiple IDS should be separated by whitespace
REACT_APP_ETHEREUM_TESTNET_ALCHEMY=""
REACT_APP_ARBITRUM_TESTNET_ALCHEMY=""
# if you run your own node you set your https address below
# - multiple IDS should be separated by whitespace
# - in Production node URLs must be secure `https://`
# - in Development node URLs must be insecure `http://`
REACT_APP_ETHEREUM_SELF_HOSTED_NODE="https://ipAddress:port"
REACT_APP_ARBITRUM_SELF_HOSTED_NODE="https://ipAddress:port"
REACT_APP_POLYGON_SELF_HOSTED_NODE="https://ipAddress:port"
REACT_APP_AVALANCHE_SELF_HOSTED_NODE="https://api.avax.network/ext/bc/C/rpc"
REACT_APP_FANTOM_SELF_HOSTED_NODE="https://rpc.fantom.network https://rpc.ftm.tools"
# Segment Analytics
# - not necessary in dev environment
REACT_APP_SEGMENT_API_KEY=""
# Google Analytics
# - not necessary in dev environment
REACT_APP_GA_API_KEY=""
# Covalent
# - used to fetch token balances on wallet
# - you can pick up a Covalent key at https://www.covalenthq.com/
REACT_APP_COVALENT=""
########################