forked from gnosis/conditional-tokens-explorer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env.example
52 lines (36 loc) · 2.41 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
REACT_APP_INFURA_ID=INFURA_ID
REACT_APP_DEFAULT_NETWORK_ID=1
REACT_APP_CTE_GRAPH_HTTP_MAINNET='https://api.thegraph.com/subgraphs/name/cag/hg'
REACT_APP_CTE_GRAPH_HTTP_RINKEBY='https://api.thegraph.com/subgraphs/name/cag/hg-rinkeby'
REACT_APP_CTE_GRAPH_HTTP_GANACHE='http://localhost:8000/subgraphs/name/gnosis/hg'
REACT_APP_OMEN_GRAPH_HTTP_MAINNET='https://api.thegraph.com/subgraphs/name/protofire/omen'
REACT_APP_OMEN_GRAPH_HTTP_RINKEBY='https://api.thegraph.com/subgraphs/name/protofire/omen-rinkeby'
REACT_APP_EARLIEST_MAINNET_BLOCK_TO_CHECK=1
REACT_APP_EARLIEST_RINKEBY_BLOCK_TO_CHECK=1
REACT_APP_EARLIEST_GANACHE_BLOCK_TO_CHECK=1
REACT_APP_LOGGER_ID='gnosis-conditional-token-explorer'
#A rarer problem is conflicts between two instances of styled-components on the page.
#You can avoid this by defining process.env.SC_ATTR in the code bundle with your styled-components instance.
#This value overrides the default <style> tag attribute, data-styled (data-styled-components in v3 and lower), allowing each styled-components instance to recognize its own tags.
REACT_APP_SC_ATTR='avoid-sc-conflicts'
#Contract addresses
REACT_APP_CONDITIONAL_TOKEN_CONTRACT_ADDRESS_FOR_MAINNET='0xC59b0e4De5F1248C1140964E0fF287B192407E0C'
REACT_APP_CONDITIONAL_TOKEN_CONTRACT_ADDRESS_FOR_RINKEBY='0x36bede640D19981A82090519bC1626249984c908'
REACT_APP_CONDITIONAL_TOKEN_CONTRACT_ADDRESS_FOR_GANACHE='0xA57B8a5584442B467b4689F1144D269d096A3daF'
REACT_APP_REALITY_CONTRACT_ADDRESS_FOR_MAINNET='0x325a2e0f3cca2ddbaebb4dfc38df8d19ca165b47'
REACT_APP_REALITY_CONTRACT_ADDRESS_FOR_RINKEBY='0x3D00D77ee771405628a4bA4913175EcC095538da'
REACT_APP_REALITY_CONTRACT_ADDRESS_FOR_GANACHE='0xcfeb869f69431e42cdb54a4f4f105c19c080a601'
REACT_APP_WRAPPED_1155_FACTORY_CONTRACT_ADDRESS_FOR_MAINNET='0xDE6943f3717738038159a406FF157d4eb3238c1B'
REACT_APP_WRAPPED_1155_FACTORY_CONTRACT_ADDRESS_FOR_RINKEBY='0xDE6943f3717738038159a406FF157d4eb3238c1B'
REACT_APP_WRAPPED_1155_FACTORY_CONTRACT_ADDRESS_FOR_GANACHE='0xDE6943f3717738038159a406FF157d4eb3238c1B'
REACT_APP_CONFIRMATIONS_TO_WAIT=2
# google analytics
REACT_APP_GOOGLE_ANALYTICS_ID='id'
# timeout in seconds for realitio answers, 86400 is one day
REACT_APP_REALITY_TIMEOUT=86400
# Min and max outcomes allowed
REACT_APP_MIN_OUTCOMES_ALLOWED=2
REACT_APP_MAX_OUTCOMES_ALLOWED=256
REACT_APP_OMEN_URL_DAPP='https://omen.eth.link'
# icon endpoint
REACT_APP_ICON_ENDPOINT='https://gnosis-safe-token-logos.s3.amazonaws.com/{}.png'