You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I am using w, err := wallet.FromSeed(api, words, version) for getting the wallet address. V4R2 is what I need and by using code I am getting an address started with EQ.... but when I am using V4R2 TonKeeper, It always start with UQ...
I am not able to replace EQ with UQ because the middle of address is the same but the end of address is not the same.
Like tonutils gives me EQTTTTTTTTTTTTTXYZ and TonKeeper gives me UQTTTTTTTTTTTTTABC.
What is the solution to get V4R2 address like TonKeeper which's valid for tonviewer?
The text was updated successfully, but these errors were encountered:
Hi, it is different form of the same address, UQ - not bounceable , EQ - bouncable, you can change this form in address type: addr.Bounce(false).String() will give you UQ form.
It looks like you are using deprecated Address() method of wallet type, it has WalletAddress() which will return you UQ form
Hi, I am using
w, err := wallet.FromSeed(api, words, version)
for getting the wallet address. V4R2 is what I need and by using code I am getting an address started with EQ.... but when I am using V4R2 TonKeeper, It always start with UQ...I am not able to replace EQ with UQ because the middle of address is the same but the end of address is not the same.
Like tonutils gives me
EQTTTTTTTTTTTTTXYZ
and TonKeeper gives meUQTTTTTTTTTTTTTABC
.What is the solution to get V4R2 address like TonKeeper which's valid for tonviewer?
The text was updated successfully, but these errors were encountered: