Hi there
I have a problem
I'm on testnet and When i perform a transfer to an address, it will back to my address
For ex I transfer 1TON
It will return 0.99 TON back to my sender address
I must use an specific sendMode or what's my problem?
I use python TONSDK
Dec 14, 2022, 1:57 PM
You have to use non-bounceable destination address: sendMode doesn't affect bouncing of messages that were sent successfully.
Dec 14, 2022, 2:05 PM
convert your address to non bounceable
Address.toString(true,true,false)
Address.toString(true,true,false)
Dec 14, 2022, 2:07 PM
Thanks 🙏
Dec 14, 2022, 2:09 PM
read here https://github.com/toncenter/tonweb/tree/master/src/utils
if you are using tonweb.
if you are using tonweb.
i am in read only mode in ton dev russian gp. please somebody release me i dont know what lead to that action. 😏
Dec 14, 2022, 2:12 PM
https://ton.org/address/
Dec 14, 2022, 2:18 PM
he probably want to do it programmatically 🙂
Dec 14, 2022, 2:19 PM
so you need to turn the bounce bit on on the message
I see in this package there is an equivlanant
wallet.address.to_string(True, True, True)
Dec 14, 2022, 2:23 PM