Hi all,
I have 2 tasks:
1. Use Telegram bot to display user’s TON-NFT.
2. Use Telegram bot to sign a contract or a string then return this result.
For the task 2, I want to allow other users to use their wallet(e.g. TON-Keeper or TON Telegram Wallet) instead of building a wallet on my bot.
How to start these 2 tasks?
I’m a designer, and these are what I conducted.
- I built a web app with Vue to connect wallet. (So i know @tonconnect/ui, but don’t know how to user @tonconnect/SDK or react)
- I built a bot with python-telegram-bot. (So i know the fundamental telegram bot and how to run it on other server.)
Based on my limited knowledge, please share more details. Thanks.
Apr 9, 2023, 2:12 AM
If I want to send a request to a wallet for a transaction, I can use the following format to prompt a TON wallet to transfer tokens to a specific address:
“ton://transfer/TON_ADDRESS”
However, using "transfer" means that my users have to pay a transaction fee. Instead, I only want to verify the user's identity by having them sign a specific string and then recovering their address from the signed message.
Is there a way to prompt a wallet to sign a string without initiating a transfer, just for the purpose of address verification?
“ton://transfer/TON_ADDRESS”
However, using "transfer" means that my users have to pay a transaction fee. Instead, I only want to verify the user's identity by having them sign a specific string and then recovering their address from the signed message.
Is there a way to prompt a wallet to sign a string without initiating a transfer, just for the purpose of address verification?
Apr 9, 2023, 10:52 AM