Hello! You can find some command line options here.
You can check your balance on [urlhttps://explorer.webchain.network]Webchain explorer[/url], searching your wallet number or you can check it on console using webchain.getBalance("address"). Remember to add 0x before the wallet number.
To transfer funds:
- Execute webchaind (from cmd)
- run this command personal.unlockAccount(WALLET) and enter the password you set when creating the account
- To transfer WEB, use 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 the amount of WEBs to be sent (0.05 WEB here is just an example).