2020-10-03 02:45:45 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
# Copyright (c) 2020, The Monero Project.
|
|
|
|
# Copyright (c) 2020, dsc@xmr.pm
|
|
|
|
|
|
|
|
debug = False
|
|
|
|
host = "127.0.0.1"
|
|
|
|
port = 1337
|
|
|
|
redis_password = None
|
2020-11-14 18:35:31 +00:00
|
|
|
redis_address = "redis://localhost"
|
|
|
|
tor_socks = "socks5://127.0.0.1:9050"
|
2020-10-03 02:45:45 +00:00
|
|
|
rpc_url = "http://127.0.0.1:18089"
|
|
|
|
xmrchain = "https://stagenet.xmrchain.net"
|
|
|
|
|
|
|
|
crypto_name = "monero"
|
|
|
|
crypto_symbol = "xmr"
|
|
|
|
crypto_block_date_start = "20140418"
|
|
|
|
|
|
|
|
urls = {
|
2020-10-14 01:34:41 +00:00
|
|
|
"xmrig": "https://api.github.com/repos/xmrig/xmrig/releases",
|
2020-10-03 02:45:45 +00:00
|
|
|
"reddit": "https://www.reddit.com/r/monero/top.json?limit=100",
|
|
|
|
"ccs": "https://ccs.getmonero.org",
|
|
|
|
"fiat_rates": "https://api.exchangeratesapi.io/latest?base=USD",
|
|
|
|
"crypto_rates": "https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd",
|
|
|
|
"crypto_wow_rates": "https://api.coingecko.com/api/v3/simple/price?ids=wownero&vs_currencies=usd"
|
|
|
|
}
|
|
|
|
|
|
|
|
if debug:
|
|
|
|
urls["xmrto_rates"] = "https://test.xmr.to/api/v3/xmr2btc/order_parameter_query/"
|
|
|
|
else:
|
|
|
|
urls["xmrto_rates"] = "https://xmr.to/api/v3/xmr2btc/order_parameter_query/"
|