-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.toml
32 lines (26 loc) · 1.15 KB
/
config.toml
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
# discord bot token
token = ""
# eth wallet
eth_mnemonic = ""
# btc REST https://host:port
btc_url = "https://127.0.0.1:8080"
# btc admin.macaroon directory
btc_macaroon_dir = "path_to/admin.macaroon"
# ltc REST https://host:port
ltc_url = "https://127.0.0.1:8081"
# ltc admin.macaroon directory
ltc_macaroon_dir = "path_to/admin.macaroon"
# limit in hours
limit = 24
# websocket web3 providers
[providers]
ethereum = "wss://rinkeby.infura.io/ws/v3/......"
arbitrum = "wss://arbitrum-rinkeby.infura.io/ws/v3/......"
[coins]
BTC = { amount = 0.0001, network = "lightning", decimals = 8 }
LTC = { amount = 0.0001, network = "lightning", decimals = 8 }
ETH = { amount = 0.0001, network = "ethereum", decimals = 18 }
USDT = { amount = 0.0001, network = "ethereum", contract = "0xD92E713d051C37EbB2561803a3b5FBAbc4962431", decimals = 6 }
USDC = { amount = 0.0001, network = "ethereum", contract = "0x4DBCdF9B62e891a7cec5A2568C3F4FAF9E8Abe2b", decimals = 6 }
AETH = { amount = 0.0001, network = "arbitrum", decimals = 18 }
HDX = { amount = 0.0001, network = "arbitrum", contract = "0x2400BBf112Ed1C663CB14c9EafFeDc0C8Be03742", decimals = 9 }