etherの送り方、送金の仕方のメモ
前提
- geth等のクライアントが入っていること
コマンドラインから送るのが、難しい、面倒な人は以下のEthereumウォレットを参考に。
Ethereum のウォレット・ソフトウェアまとめ | block-chain.jp
web3.js からの送り方
eth.sendTransaction({from: '0x036a03fc47084741f83938296a1c8ef67f6e34fa', to: '0xa8ade7feab1ece71446bed25fa0cf6745c19c3d5', value: web3.toWei(1, "ether")})
etherを送る
以下から引用
* Sending ether | Ethereum Frontier Guide
> eth.sendTransaction({from:sender, to:receiver, value: amount})
以下のように先にセットもできる
> var sender = eth.accounts[0];
> var receiver = eth.accounts[1];
> var amount = web3.toWei(0.01, "ether")
> eth.sendTransaction({from:eth.coinbase, to:eth.accounts[1], value: web3.toWei(0.05, "ether")})
Please unlock account d1ade25ccd3d550a7eb532ac759cac7be09c2719.
Passphrase:
Account is now unlocked for this session.
'0xeeb66b211e7d9be55232ed70c2ebb1bcc5d5fd9ed01d876fac5cff45b5bf8bf4'
パスワードが正しくないと以下のエラーが出る
error: could not unlock sender account