tornado-relayer/.env.example

28 lines
696 B
Plaintext
Raw Normal View History

2019-07-18 17:05:09 +03:00
NET_ID=42
2020-10-14 14:43:38 +03:00
HTTP_RPC_URL=https://kovan.infura.io
WS_RPC_URL=wss://kovan.infura.io/ws/v3/
2020-02-12 04:49:25 +03:00
# ORACLE_RPC_URL should always point to the mainnet
2019-12-23 19:38:44 +03:00
ORACLE_RPC_URL=https://mainnet.infura.io
2019-12-12 13:58:58 +03:00
REDIS_URL=redis://127.0.0.1:6379
2019-12-09 21:47:56 +03:00
# without 0x prefix
2019-07-18 17:05:09 +03:00
PRIVATE_KEY=
2019-11-26 23:34:52 +03:00
# 2.5 means 2.5%
2020-10-05 17:22:52 +03:00
REGULAR_TORNADO_WITHDRAW_FEE=2.5
MINING_SERVICE_FEE=2.5
2020-05-08 20:29:31 +03:00
APP_PORT=8000
2019-11-15 12:01:59 +03:00
2020-10-06 14:20:26 +03:00
TORN_ETH_PRICE=7000000000000000
REWARD_ACCOUNT=
2020-05-08 20:29:31 +03:00
# Resubmitter params:
# how often the watcher will check the first pending tx (in seconds)
NONCE_WATCHER_INTERVAL=30
# how long a tx can be in pending pool (in seconds)
ALLOWABLE_PENDING_TX_TIMEOUT=180
# in GWEI
2020-05-12 23:23:18 +03:00
MAX_GAS_PRICE=200
2020-05-08 20:29:31 +03:00
# how much to increase the gas price for a stuck tx
GAS_PRICE_BUMP_PERCENTAGE=20
2020-05-12 23:23:18 +03:00