web3.js獲取以太坊帳戶餘額

使用web3.js獲取帳戶餘額

可使用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

相關文章
相關標籤/搜索