Added support for Nonkyc exchange

Nonkyc is practically same as Xeggex.
This commit is contained in:
gdiscord
2024-02-09 16:57:01 +00:00
parent e0b01e97ac
commit f92cdfc4ca
4 changed files with 165 additions and 1 deletions
File diff suppressed because one or more lines are too long
+12
View File
@@ -870,6 +870,18 @@ exports.markets_page = {
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
"trading_pairs": [ "LTC/BTC" ]
},
// nonkyc: a collection of settings that pertain to the nonkyc exchange
// NOTE: nonkyc does not display a 24-hour chart due to a lack of OHLCV api data
"nonkyc": {
// enabled: Enable/disable the nonkyc exchange (true/false)
// If set to false, the nonkyc page will be completely inaccessible and no market data will be downloaded for this exchange
"enabled": false,
// trading_pairs: An array of market trading pair symbols
// You can add as many trading pairs as necessary
// All entries must specify your coins symbol as it is displayed on the exchange, followed by a slash (/) and ending with the symbol of the market or asset that is being traded against
// Ex: "LTC/BTC", "LTC/USDT", "LTC/ETH"
"trading_pairs": [ "LTC/USDT" ]
},
// poloniex: a collection of settings that pertain to the poloniex exchange
"poloniex": {
// enabled: Enable/disable the poloniex exchange (true/false)