アカウントの作成 personal.newAccount() アカウントの確認 eth.accounts コインベースの確認 eth.coinbase (デフォルトではeth.accounts[0]) マイニング eth.getBalance(eth.accounts[0]) アカウントのアンロック personal.unlockAccount(eth.accounts[0]) アカウントのアンロック personal.unlockAccount(address, "password") 残高 eth.getBalance(eth.accounts[0]) 残高 eth.getBalance("0x******************") 送金 eth.sendTransaction({from:eth.accounts[0], to:eth.accounts[1], value:1000000000000000000}) トランジションの確認 eth.getTransaction("0x295a6db3a1eb7192057982f531ffd2c74dfd956d22319f4758eac30177f4afc5") 同期の確認 eth.syncing コインベースの変更 miner.setEtherbase(eth.accounts[0]) プライベートキーのインポート $ geth --datadir /someOtherEthDataDir account import ./key.prv 単位変換 web3.fromWei(eth.getBalance(eth.accounts[0]),"ether") 採掘できているかは eth.hashrate ブロック数の確認 eth.blockNumber ブロックの内容を調査 eth.getBolck(eth.blockNumber)