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
+1
View File
@@ -104,6 +104,7 @@ Table of Contents
- [AltMarkets](https://altmarkets.io)
- [Dex-Trade](https://dex-trade.com)
- [FreiExchange](https://freiexchange.com)/[FreiXLite](https://freixlite.com) *\*no chart support due to a lack of OHLCV api data*
- [NonKyc](https://nonkyc.io) *\*no chart support due to a lack of OHLCV api data*
- [Poloniex](https://poloniex.com)
- [SouthXchange](https://southxchange.com)
- [Xeggex](https://xeggex.com) *\*no chart support due to a lack of OHLCV api data*
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)
+13 -1
View File
@@ -918,7 +918,7 @@
"show_market_select": true,
// exchanges: Enable/disable api integration with any of the available built-in exchanges
// Enabled exchanges display a number of exchange-related metrics including market summary, 24 hour chart, most recent buy/sell orders and latest trade history
// Supported exchanges: altmarkets, dex-trade, freiexchange/freixlite, poloniex, southxchange, xeggex, yobit
// Supported exchanges: altmarkets, dex-trade, freiexchange/freixlite, nonkyc, poloniex, southxchange, xeggex, yobit
"exchanges": {
// altmarkets: a collection of settings that pertain to the altmarkets exchange
"altmarkets": {
@@ -954,6 +954,18 @@
// 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)