forked from SimplyStaking/agoric-ocw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.prod
More file actions
62 lines (62 loc) · 2.42 KB
/
.env.prod
File metadata and controls
62 lines (62 loc) · 2.42 KB
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
54
55
56
57
58
59
60
61
62
# Ethereum mainnet websocket URL
ETHEREUM_MAINNET_RPC_URL=
# Polygon mainnet websocket URL
POLYGON_RPC_URL=
# Optimism mainnet websocket URL
OPTIMISM_RPC_URL=
# Base mainnet websocket URL
BASE_RPC_URL=
# Arbitrum mainnet websocket URL
ARBITRUM_RPC_URL=
# Local testnet websocket URL (for testing only)
LOCALEVMCHAIN_RPC_URL=ws://127.0.0.1:8545
# LCD URL for noble (port 1317)
NOBLE_LCD_URL=https://noble-api.polkachu.com
# RPC URL for noble (port 26657)
NOBLE_RPC_URL=https://noble-rpc.polkachu.com
# RPC WS URL for noble (port 26657)
NOBLE_RPC_WS_URL=https://noble-rpc.polkachu.com/websocket
# MongoDB URL for DB
DB_URL=mongodb://localhost:27017/agoricOCW
# The delay between RPC reconnects (seconds)
RPC_RECONNECT_DELAY=5
# LCD URL for agoric (port 1317)
AGORIC_LCD_URL=http://127.0.0.1:1317
# A comma separated agoric RPC endpoints
AGORIC_RPCS=http://127.0.0.1:26657
# A comma separated agoric RPC WS endpoints
AGORIC_WS_RPCS=ws://127.0.0.1:26657/websocket
# The agoric chain ID
AGORIC_NETWORK=agoric-3
# The interval between each Agoric RPC check (seconds)
AGORIC_RPC_CHECK_INTERVAL=20
# The interval between each policy check (minutes)
QUERY_PARAMS_INTERVAL=5
# The address of the watcher to fetch the invitation
WATCHER_WALLET_ADDRESS=
# The maximum number of offers to loop when getting the offers
MAX_OFFERS_TO_LOOP=20
# The number of blocks that a submission spends in mempool before getting discarded
TX_TIMEOUT_BLOCKS=3
# The environment DEV|PROD|TEST
ENV=PROD
# The API secret to access the TX API
API_SECRET=XXXXXXXX
# The number of minutes to hold transactions without a Noble FA before discarding them
MINUTES_HOLDING_UNKNOWN_FA=30
# Start Height for Ethereum from which block to get logs the first time for backfilling
ETHEREUM_START_HEIGHT=21988775
# Start Height for Polygon from which block to get logs the first time for backfilling
POLYGON_START_HEIGHT=68718909
# Start Height for Base from which block to get logs the first time for backfilling
BASE_START_HEIGHT=27242968
# Start Height for Optimism from which block to get logs the first time for backfilling
OPTIMISM_START_HEIGHT=132838252
# Start Height for Arbitrum from which block to get logs the first time for backfilling
ARBITRUM_START_HEIGHT=312887571
# Start Height for LocalEvmChain from which block to get logs the first time for backfilling
LOCALEVMCHAIN_START_HEIGHT=21988775
# Number of times to retry requests
REQUESTS_RETRIES=2
# Interval between retry requests in seconds
REQUESTS_INTERVAL=1