This repository has been archived by the owner on Sep 19, 2024. It is now read-only.
forked from mintthemoon/oracle-price-feeder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.example.toml
127 lines (101 loc) · 3.08 KB
/
config.example.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
gas_adjustment = 1.5
gas_prices = "0.00125ukuji"
enable_server = true
enable_voter = true
[server]
listen_addr = "0.0.0.0:7171"
read_timeout = "20s"
verbose_cors = true
write_timeout = "20s"
[[deviation_thresholds]]
base = "USDT"
threshold = "2"
# Stable coins
# -----------------------------------------------------------------------------
[[currency_pairs]]
base = "USDT"
quote = "USD"
providers = ["coinbase", "kraken", "crypto", "gate", "binanceus"]
# USD
# -----------------------------------------------------------------------------
[[currency_pairs]]
base = "ATOM"
quote = "USD"
providers = ["coinbase", "kraken"]
[[currency_pairs]]
base = "BTC"
quote = "USD"
providers = ["coinbase", "kraken", "crypto", "bitfinex"]
[[currency_pairs]]
base = "DOT"
quote = "USD"
providers = ["coinbase", "kraken", "bitfinex"]
[[currency_pairs]]
base = "ETH"
quote = "USD"
providers = ["coinbase", "kraken", "crypto", "bitfinex"]
[[currency_pairs]]
base = "LUNA"
quote = "USD"
providers = ["kraken", "crypto", "bitfinex"]
# USDT
# -----------------------------------------------------------------------------
[[currency_pairs]]
base = "ATOM"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "crypto", "gate", "bitget", "bybit", "hitbtc", "kucoin", "bitforex", "poloniex", "phemex", "lbank"]
[[currency_pairs]]
base = "BNB"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "gate", "bitget", "bybit", "hitbtc", "kucoin", "poloniex", "phemex", "lbank"]
[[currency_pairs]]
base = "BTC"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "gate", "bitget", "bybit", "hitbtc", "kucoin", "bitforex", "poloniex", "phemex", "lbank"]
[[currency_pairs]]
base = "DOT"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "crypto", "gate", "bitget", "bybit", "hitbtc", "kucoin", "bitforex", "poloniex", "phemex", "lbank"]
[[currency_pairs]]
base = "ETH"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "gate", "bitget", "bybit", "hitbtc", "kucoin", "bitforex", "poloniex", "phemex", "lbank"]
[[currency_pairs]]
base = "LUNA"
quote = "USDT"
providers = ["binance", "mexc", "huobi", "okx", "gate", "bitget", "bybit", "hitbtc", "kucoin", "bitforex", "poloniex", "phemex", "lbank"]
# BTC
# -----------------------------------------------------------------------------
[[currency_pairs]]
base = "BNB"
quote = "BTC"
providers = ["bitforex"]
# -----------------------------------------------------------------------------
[account]
address = "kujira..."
chain_id = "kaiyo-1"
validator = "kujiravaloper..."
prefix = "kujira"
# Optional
fee_granter = "kujira..."
[keyring]
backend = "file"
dir = "/home/<user>/.kujira"
[rpc]
grpc_endpoint = "localhost:9090"
rpc_timeout = "100ms"
tmrpc_endpoint = "http://localhost:26657"
[telemetry]
enable_hostname = true
enable_hostname_label = true
enable_service_label = true
enabled = true
global_labels = [["chain-id", "kaiyo-1"]]
service_name = "price-feeder"
type = "prometheus"
[[provider_endpoints]]
name = "binance"
rest = "https://api1.binance.com"
websocket = "stream.binance.com:9443"
[[healthchecks]]
url = "https://hc-ping.com/HEALTHCHECK-UUID"