Post
Topic
Board Announcements (Altcoins)
Re: [ANN] Ethereum: Welcome to the Beginning
by
alan.d
on 09/09/2015, 18:24:32 UTC
Just wanted to inform you that the secure web wallet

https://www.ethereumwallet.org

has just relayed the 1000th transaction.
Thank you very much for your commitment and your trust.
Hi, whith this wallet can I import ethereum coin bought on presale. Or is there any other way to import my coins. with the frontier thing, I am not familiar with it.
Help!

Unfortunately there is no function yet to import a presale wallet into the web wallet.
What you can do is install GETH and follow this guide to import your presale wallet.

http://ethereum.gitbooks.io/frontier-guide/content/wallet.html

Then launch geth using

Code:
geth -rpc console

and then paste this string after adjusting the 0xYOUR_WEB_ADDRESS  address. This should be the address you can get from the web wallet by clicking the "Receive" button. Also "100" should be replaced by the amount of ether you have in your presale wallet.

Code:
eth.sendTransaction({from:eth.accounts[0], to:"0xYOUR_WEB_ADDRESS", value: web3.toWei(100, "ether")})