我正在开发以太坊钱包 api。现在,我想通过使用来获得特定地址的余额eth.getBalace()
。
我在下面运行测试网
alias geth = 'geth --ipcpath /home/tom/.ethereum/testnet/geth.ipc'
geth console
这时候,我可以看到eth.syncing
是true
。我在http://faucet.ropsten.be:3001/中发送了 3 个以太币。但是我可以通过使用eth.getBalance()
方法来获得平衡。
当我检查http://etherscan.io时,有成功状态。它也显示在http://myetherwallet.com中。
如何在本地获得平衡?