-
Notifications
You must be signed in to change notification settings - Fork 9
Description
I've been using this SDK today to build a backend service that interacts with the Telegram bot, written in Python.
And that's my list of what wastes my time a bit:
— Can't find any line in the examples with the command broadcastTransaction, and it took a bit of extra time to dive into the code and understand what I should send there as parameters
— When I've tried to run a deposit, transfer, or withdrawal operation, I got a bit confused because requests were sent, but I don't see any logs about the current phase of this operation on the Node.js side. But I got a lot of lines like:
2025-06-15 11:44:38 Tokens updated 2025-06-15 11:44:40 Tokens updated
I guess these action types should provide more logs.
— Not sure if that's a bug or something like this, but I still don't understand what to do with the results from the withdraw/transfer operation it returns
2025-06-15 11:18:37 TXID: { 2025-06-15 11:18:37 txTreeRoot: '0x3df544eef890ce8a707fe69cc6c8274d77c5e29ed8f8a4edcb3c33569a2ac9c6', 2025-06-15 11:18:37 transferDigests: [ 2025-06-15 11:18:37 '0x066ea27ff4dd903d8410d3f5da8fe1d6c664ecb8ff731df5c6623064ecfa923c', 2025-06-15 11:18:37 '0xf06950afbbfac68c25b2bed28aee31dfd34054805f23d0c542c7fdcfbccdf7a7', 2025-06-15 11:18:37 '0x527245a71c7f9ceacd11ba79ee3d22e4be549c086f29c95d1188e37ac4311447', 2025-06-15 11:18:37 '0x36fa8f563a46cd018f26cfab6ab90551994936eb16c82ac0cd9770aea1a0b891' 2025-06-15 11:18:37 ] 2025-06-15 11:18:37 }
But after trying such transactions in different explorers, it still doesn't give me any results
Everything else working fine, thank you for solution.
P.S.: Waiting for Python SDK =)