GRIN coin not showing in load_markets()
See original GitHub issueOS: Windows
Python 3.7
CCXT version: ccxt-1.18.643
method: load_markets()
bit2c
Exchange has GRIN
coin in markets (GRIN/NIS
), but load_markets()
fails to show it.
This might be related to currencies… I’m still investigating and will update this issue if I find more information. However perhaps you can fix/check in the meanwhile:
Code:
markets = exchange.load_markets()
print('markets = {}'.format(markets))
Result:
markets = {'BTC/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'BtcNis', 'symbol': 'BTC/NIS', 'base': 'BTC', 'quote': 'NIS'}, 'ETH/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'EthNis', 'symbol': 'ETH/NIS', 'base': 'ETH', 'quote': 'NIS'}, 'BCH/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'BchAbcNis', 'symbol': 'BCH/NIS', 'base': 'BCH', 'quote': 'NIS'}, 'LTC/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'LtcNis', 'symbol': 'LTC/NIS', 'base': 'LTC', 'quote': 'NIS'}, 'ETC/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'EtcNis', 'symbol': 'ETC/NIS', 'base': 'ETC', 'quote': 'NIS'}, 'BTG/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'BtgNis', 'symbol': 'BTG/NIS', 'base': 'BTG', 'quote': 'NIS'}, 'BSV/NIS': {'percentage': True, 'maker': 0.005, 'taker': 0.005, 'precision': {}, 'limits': {'amount': {'min': None, 'max': None}, 'price': {'min': None, 'max': None}, 'cost': {'min': None, 'max': None}}, 'id': 'BchSvNis', 'symbol': 'BSV/NIS', 'base': 'BSV', 'quote': 'NIS'}}
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (6 by maintainers)
Top Results From Across the Web
Grin
Grin is a privacy-preserving digital currency built openly by developers distributed all over the world. Grin has no amounts and no addresses. Transactions...
Read more >How to Buy Grin (GRIN) - Coinbase
Go to CoinMarketCap and search for Grin. Tap on the button labeled “Market” near the price chart.
Read more >Windows & Linux Mining Guide + What is GrinCoin anyway?
Grin Coin is a no ICO, no premine, and no dev tax mineable cryptocurrency. Today I'll show you how to mine GRIN which...
Read more >Grin (GRIN) live coin price, charts, markets & liquidity
Track current Grin prices in real-time with historical GRIN USD charts, liquidity, and volume. Get top exchanges, markets, and more.
Read more >18 Months In, Few People Use, Mine or Buy Privacy Coin Grin
Despite launching with considerable fanfare in early 2019, grin, the first cryptocurrency to test privacy protocol MimbleWimble, is showing no ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
BTW I messaged their devs to have a look at this issue so they can hopefully add an API exposing the supported list
Upgrading to
ccxt-1.18.661
fixes the issue,Grin
shows up in the markets list.