mirror of
https://git.wownero.com/wowlet/wowlet-backend.git
synced 2024-08-15 01:03:13 +00:00
Initial commit
This commit is contained in:
commit
7785d5befe
16 changed files with 8344 additions and 0 deletions
27
settings.py_example
Normal file
27
settings.py_example
Normal file
|
@ -0,0 +1,27 @@
|
|||
# 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/"
|
Loading…
Add table
Add a link
Reference in a new issue