可使用JavaScript API來獲取以太坊帳戶餘額,例如在JavaScript代碼中:web
web3.fromWei(web3.eth.getBalance(web3.eth.coinbase));
若是你在geth控制檯裏,能夠將web3.eth
使用其eth
別名代替:區塊鏈
> web3.fromWei(eth.getBalance(eth.coinbase));
在合約中更簡單,Solidity爲每一個address
對象都提供了一個balance
屬性,它返回以wei
爲單位的帳戶餘額。例如:ui
contract ownerbalancereturner { address owner; function ownerbalancereturner() public { owner = msg.sender; } function getOwnerBalance() constant returns (uint) { return owner.balance; } }
推薦兩個以太坊相關的實戰教程:spa
更多的內容能夠訪問博客:3d
http://blog.hubwiz.com/2018/01/10/how-to-check-ethereum-balance/code