Stellar Desktop Client & Stargazer
- Edited
Google translate: I have 20 XML and want to remove them from the wallet and close the account how do I do this?
Tenho 20 XML e quero retira las da carteira e encerrar a conta como faço isso?
WillianMaxuel What wallet are you using and where do you want to send the XLM?
- Edited
Google translate: I'm using the Stargazer desktop wallet. I want to send it to binance.
bkolobara Estou usando a carteira para desktop Stargazer. Pretendo enviar para a binance.
WillianMaxuel With the reduced minimum balance you should be able to send everything except 1 XLM. Exchanges don't support account merges and you can't send everything right now, but you should be able to send 19 XLM. Maybe Stargazer was not updated and doesn't know about the new base reserve. In this case you will need to figure out how to export your account and read out the secret key; then use https://www.stellar.org/account-viewer/#!/ to send 19 XLM to Binance.
Have a question, I added xlm to my stellar address Stargazer wallet but the account had Testnet below not public what happen to the xlm's now ? Because it been 18 hours now and nothing in my account.
- Edited
Google translate: If I close my Stargazer wallet account do I lose my XML or before finally closing the wallet will I be given the option to withdraw as XML?
bkolobara Se eu encerrar minha conta da carteira Stargazer eu perco minhas XML ou antes de encerrar definitivamente a carteira vão me dar a opção de retirar as XML?
Can anyone please help a newbie :-).
I have some XLM with Binance and i would like to transfer them to my Paper Wallet.
I downloaded the cold wallet generator (https://github.com/stellar/paper-wallet) and generated the public and private key offline , printed them. On Binance clicked on withdrawal XLM (XLM Withdrawal Address) and i ionserted the public key but it doesn´t let me put all 28 characters ( the generated 28 public key doesn´t fit in the withdrawal address in Binance.I appreciate any constructive help, thanks.
- Edited
I've noticed that Stellar Desktop Client has error messages when account is unfunded, it can only send 20 Lumens to an unfunded account, StellarTerm wouldn't let me send my MOBI to it, and the GFT is listed as ICO (project dead).
I created an account on Stellar Desktop Client. I funded my Stellar wallet via Binance XLM withdrawal. My Binance transaction history says it has been completed, but my Stellar Wallet still displays 0 balance and I am getting a Network Error in the History tab. Any help would be greatly appreciated. Thank you!
bkolobara Hi , you seem like a big help to everyone . I have a question about stellar account viewer , when i first purchased some lumens from Poloniex it was one of my first tranfers , i generated a Public and private key thru the viewer i wrote down the private key and copied public key to insert to withdraw from poloniex , in the mix of all this when i went back to check if did right i am missing 2 digits to the private key somehow in copying or paste to notes. When i go to stellar expert and put public key in i see the amount i purchused and un touched , is there a ways to recover these ,
Beantownsbest If you are missing only 2 last letters from secret key you could try out all the combinations of letters and numbers. It would take some time but someone could write a little program for you that tries all combinations in 1 second. It would be a fun programming exercise.
Also, I think that the end of the secret key is used as a checksum (not 100% sure on this). This reduces the number of possibilities.
Just make sure your secret key starts with an S, so you know you are not missing the first 2.
- Edited
Beantownsbest Hi,
After checking out the Stellar source code it looks like you are lucky. You can generate the last 2 letters from the rest as the last 2 only represent the checksum. It's a bit complicated, but I will try to brake it down into multiple steps:
- Generate a hexadecimal representation of your secret key here: http://tomeko.net/online_tools/base32.php?lang=en
Input your key (starting with an S) without the last 2 letters into the field "Base32 string" and click convert, you will get an hexadecimal representation of the key. - Calculate the CRC16 for your hexadecimal representation of the key here: http://crccalc.com/
Copy your newly generated hex key into the input box, select Hex and press "Calc CRC-16". Now look at the "CRC-16/XMODEM" row (last) and Result column. You will have a result in the form of 0xABCD, where ABCD are some values. - Add the ABCD result to your hexadecimal representation by reversing it:
Turn ABCD into CDAB (this exact transformation) and attach it at the end of the hexadecimal representation from step 1. - Convert the hexadecimal representation back to base32 here: http://tomeko.net/online_tools/hex_to_base32.php?lang=en
Enter your hex string and press "Convert"
This should result in your full secret key! Good luck and let us know how it went. ?
Thankyou thankyou so much , i will try to follow and replicate all these steps and hopefully can come up with the write private key if indeed it was the last 2 digits and not somewhere in the middle where i miss copied but i think it could be just the end because the beginning does start with S so the chances of the middle being messed would be unlikly . I will comment back soon , thanks this was as much help as i recieved in months reseaching this like i said had just gottten in to the space and am extremely interested in it as well .
bkolobara so your steps were awesome made very easy to do , BUT when i did all of this it gave me a private key but changed the last 3 letters so the last letter i had up to say was P after i did all the steps it gave a new private key but changed the P to LJO at the end i put new PK in the viewer but was a different wallet that had ZERO lumens and didnt match public Key
- Edited
I tried it with my secret key by removing the 2 last letters and it worked. Are you sure in step 2 you selected HEX and you got step 3 correct? E.g. If the result is 0x3EA1 you need to turn it into A13E before attaching to the long hex.
It's a bit tricky, it took me 4-5 tries until I got it right.
EDIT: Actually, if it lets you into the account viewer then this is the secret key with the correct checksum. It would report an incorrect key otherwise. I'm just afraid now that you saved the wrong key ?