forked from SimplyStaking/agoric-ocw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.test
More file actions
45 lines (45 loc) · 2.06 KB
/
.env.test
File metadata and controls
45 lines (45 loc) · 2.06 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
# Ethereum mainnet websocket URL
ETHEREUM_MAINNET_RPC_URL=wss://spectrum-02.simplystaking.xyz/c2ltcGx5cHJvZHVjdHMtMDItNjQ4YmVkYTE/6_H5E6QZxFQvDw/ethereum/mainnet/
# Polygon mainnet websocket URL
POLYGON_RPC_URL=wss://spectrum-01.simplystaking.xyz/c2ltcGx5cHJvZHVjdHMtMDEtNjQ4YmVkYTE/atrnxFubjmtrTw/polygon/mainnet/
# Optimism mainnet websocket URL
OPTIMISM_RPC_URL=wss://spectrum-01.simplystaking.xyz/c2ltcGx5cHJvZHVjdHMtMDEtNjQ4YmVkYTE/pV5I9Cm1NhWicA/optimism/mainnet/
# Base mainnet websocket URL
BASE_RPC_URL=wss://spectrum-01.simplystaking.xyz/c2ltcGx5cHJvZHVjdHMtMDEtNjQ4YmVkYTE/1TpCYqA_EWUEFg/base/mainnet/
# Arbitrum mainnet websocket URL
ARBITRUM_RPC_URL=wss://spectrum-01.simplystaking.xyz/c2ltcGx5cHJvZHVjdHMtMDEtNjQ4YmVkYTE/Td2WKipcif2eEQ/arbitrum/mainnet/
# 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
# MongoDB URL for DB
DB_URL=mongodb://localhost:27017/agoricOCW
# The delay between RPC reconnects (seconds)
RPC_RECONNECT_DELAY=5
# A comma separated agoric RPC endpoints
AGORIC_RPCS=https://agoric-rpc.polkachu.com
# 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=agoric1ee9hr0jyrxhy999y755mp862ljgycmwyp4pl7q
# 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
# The environment DEV|PROD
TX_TIMEOUT_BLOCKS=3
# The environment DEV|PROD|TEST
ENV=TEST
# 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
# Number of times to retry requests
REQUESTS_RETRIES=2
# Interval between retry requests in seconds
REQUESTS_INTERVAL=1