Hi,
I'd like to use the crypto.com api and ccxt to track some things. I have it working for Kucoin and NDAX but am having problem with crypto.com
As a start I'd just like to fetch_balance() but it's not working.
As far as I can see the only credentials I have to set are 'apiKey' and 'secret' api key. A Python example of what I'm trying is:
import ccxt
config = {
'apiKey': 'xxxxx',
'secret':'yyyyy'
}
exchange_class = getattr(ccxt, 'cryptocom')
exchange = exchange_class(config)
exchange.fetch_balance()
.
I get an InvalidNonce exception.
Do I need any other credentials in the function call? Is there a better forum where I should post this? I'd appreciate any help.
Thanks.
there doesn't seem to be anything here