Another question, I got a friend to start mining too and we want to try sending coin to each other. Can I do it from console? or do we have to wait for the GUI wallet?
Hello!
You can do it from the console.
You need to run webchaind and follow these steps:
1) Run personal.unlockAccount(WALLET)
where “WALLET” refers to your webchain wallet number. You will be asked to enter your password. Enter it and continue.
c) To send coins to other wallet, use this command with the following arguments:
webchain.sendTransaction({from:'WALLET1', to:'WALLET2', value: web3.toWei(0.05, "ether"), gas:21000});
where “WALLET1” is your wallet, “WALLET2” is the recipient's wallet, 0.05 is the amount of WEB you want to send (0.05 is an example).