mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
27 lines
905 B
Text
27 lines
905 B
Text
# 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
|
|
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 = {
|
|
"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/"
|