Can I send or receive coins from other accounts at this time?
Thank you.
Hello! If you have created different accounts, you can always send coins to any other webchain wallet.
You can use the GUI pre-release wallet
https://github.com/webchain-network/webchain-wallet/releases You can also do it from the console, following these steps:
1) Run > personal.unlockAccount(WALLET)
where WALLET refers to your webchain wallet number. You will be prompted with your wallet password. Type it and press enter.
2) To send coins to another wallet, use this command with the following arguments:
> webchain.sendTransaction({from:'WALLET1', to:'WALLET2', value: web3.toWei(0.05, "ether"), gas:21000});
where WALLET1 represents your wallet, and WALLET2 the recipient's wallet. 0.05 is an example of the amount of WEB to be sent.