ffbboy30
ffbboy30
Hi, I don't find in the documentation information on the way to decode message received in the event 'updates' ``` mtproto.updates.on('updates', (updateInfo) => { console.log('updates:', updateInfo); }); ``` The updateInfo...
Hi, I'm trying to create a TelegramListener.js. I call it from my mains file like this `require('./TelegramListener.js')` The code in the listener is like this ``` const { MTProto, getSRPParams...
Hi, I've program my ESP-01 with the version v3.2.47 thinking that I could use it as an UDP/SERIAL transparent bridge . But it works only in TCP. Is there a...
Hi, I've tried the Extra sample with my Due , I received the ubx packet starting with 0xB5 and 0x62. When I try to implement the lib with the same...
Hi, I tried your code with the arduino software. I've installed the library with the library manager. When I compile the code sample I've this error. Could you help please....
I've a problem in the function GetBalance. When I list all my balance with this code ` Object.entries(balances) .filter((arr) => parseFloat(arr[1].available) > 0) .forEach((arr) => { newBalance[arr[0]] = arr[1] console.log(chalk.yellow(`YOU...
Hi, I've succeed to connect to my telegram account but I suck to import my channels list and after that I want to read some of them. Could you help...
Hi, I'm trying to compile demo. I've installed lodash and now I've an error "Uncaught Error: Cannot find module './config'" I launch the level2_demo from the demo directory. Thanks for...
Hi, I'm trying to implement an order cancel test. The order works fine `Trade_client = Trade(key=api_key, secret=api_secret, passphrase=api_passphrase, is_sandbox=False, `url='') order_id = Trade_client.create_market_order('NANO-USDT', 'buy', size='1')` I wait 5 second and...
Hi, Im trying to use the MarketBuy function like this `let BuyInfo = await binance.marketBuy('TROYBTC', 41666666,'MARKET',(error, ticker) => { if ( error ) console.error(error); console.info("Market Buy response", ticker); console.info("order id:...