What are the commands to check the addtess and command for balance?
cd shift-executables/
Thanks!
For command line without the gui you need to do either shift console directly or run shift itself and in another window run shift attach (better coz you don't get the status updates going in). Then you do eth.getBalance(eth.coinbase)
Note this is for the 1st account. You can also do eth.accounts[n] where n is your "n+1 th" account. This way you can do eth.getBalance(eth.accounts[1]) to get the "2nd" account balance etc. NOTE: the balance is in the lowest denominator so it'll seem huge.