Account
계정 생성
gwemix wemix new-account --out <account-file-name>계정 가져오기
mkdir {data_directory}/keystore
chmod 700 {data_directory}/keystore
cp <account-file-name> {data_directory}/keystore계정 잔고 확인
eth.getBalance('{your_address}')function checkAllBalances() {
var i = 0;
eth.accounts.forEach( function(e){
console.log("eth.accounts["+i+"]: " + e + " \tbalance: " + web3.fromWei(eth.getBalance(e), "ether") + " ether");
i++;
})
};Last updated