23 lines
967 B
Python
23 lines
967 B
Python
import json
|
|
|
|
VERSION = "v1.1.0"
|
|
|
|
# Blockchain.com endpoint and the subscription message which initializes the "transaction stream"
|
|
WS_ADDR = "wss://ws.blockchain.info/coins"
|
|
# Optionally `confirmed_transaction` can be used (bursts of data instead of a steady stream, which is worse for the overall performance)
|
|
SUB_MSG = json.dumps({"coin": "eth", "command": "subscribe", "entity": "pending_transaction"})
|
|
|
|
# Pause before reconnecting after the WebSocket connection is accidentally dropped by either party
|
|
WS_RECONNECT_PAUSE = 2
|
|
|
|
# Paths inside the Docker container where data is stored/exported (should match with the mounted volume in `deploy.sh`)
|
|
DEFAULT_DB_PATH = "./data/chainmapper.sqlite3"
|
|
DEFAULT_EXPORT_PATH = "./data/export.json"
|
|
|
|
# Defaults to environment variables (must be strings for this reason, interval in seconds)
|
|
DEFAULT_MODE = "production"
|
|
DEFAULT_EXPORT_INTERVAL = "10800"
|
|
DEFAULT_IS_EXPORT = "False"
|
|
|
|
IP_TEST_ADDR = "https://ipv4.icanhazip.com"
|