Added support for Nonkyc exchange
Nonkyc is practically same as Xeggex.
This commit is contained in:
@@ -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
@@ -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
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user