Hi,
I’m building a proxy in NodeJs however when I use the newOrder and bswapQuote from @binance/connector I get an error code: -12015, msg: ‘Input parameter setting error’
I have used the example:
client.bswapSwap(‘USDT’, ‘BUSD’, 20)
.then(response => logger(response.data))
.catch(error => logger(error))
and when I check the response it seems correct:
/sapi/v1/bswap/swap?quoteAsset=USDT&baseAsset=BUSD"eQty=20×tamp=1705320621666&signature=xxxx
Even Swagger gives an error and I can check my coins so I do have a connection, and credentials are checked.
What could be wrong?
Thank you