-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
28 lines (22 loc) · 1009 Bytes
/
config.py
File metadata and controls
28 lines (22 loc) · 1009 Bytes
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
# config
API = True # Enable API server
XRPL_WS = "wss://xrplcluster.com"
XRP_SCAN_API = "https://api.xrpscan.com/api/v1/tx/"
XRP_PRICE_URL = "https://api.coingecko.com/api/v3/simple/price?ids=ripple&vs_currencies=usd"
ETH_RPC_URL = "https://ethereum-rpc.publicnode.com"
BTC_API_URL = "https://mempool.space/api"
TON_API_URL = "https://toncenter.com/api/v3/transactions"
SOL_RPC_URL = "https://api.mainnet-beta.solana.com"
DATABASE_URL = 'sqlite:///./whale.db'
ETH_WHALE_THRESHOLD = 500 # ETH
BTC_WHALE_THRESHOLD = 50
XRP_THRESHOLD_USD = 2_000_000 # in $USD
TON_WHALE_THRESHOLD = 10_000 # 10000 TON in TON
SOL_THRESHOLD_USD = 500_000 # USD
# REPORT LANGUAGE
REPORT_LANGUAGE = "EN" # or RU
KNOWN_EXCHANGES = [
"Binance", "Coinbase", "Kraken", "Bitfinex", "Bitstamp",
"Huobi", "OKX", "Gemini", "Bitget", "FTX", "KuCoin", "Poloniex",
"Wintermute", "Bybit", 'Crypto.com', "Bittrex", "Gate.io", "Upbit", "Whitebit", "BingX","Coinbase", "BitMart", "Luno", "WazirX", "ZB.com", "BitFlyer"
]