若是你但願立刻開始學習以太坊DApp開發,能夠訪問匯智網提供的出色的在線互動教程:git
發送一個交易到網絡。若是交易是一個合約建立的,請使用web3.eth.getTransactionReceipt()在交易完成後獲取合約的地址。github
調用:web
web3.eth.sendTransaction(transactionObject [, callback])
參數:網絡
transactionObject
: Object - 要發送的交易對象。
返回值:異步
String
- 32字節的交易哈希串。用16進製表示。示例:函數
// compiled solidity source code using https://chriseth.github.io/cpp-ethereum/ var code = "603d80600c6000396000f3007c01000000000000000000000000000000000000000000000000000000006000350463c6888fa18114602d57005b6007600435028060005260206000f3"; web3.eth.sendTransaction({data: code}, function(err, address) { if (!err) console.log(address); // "0x7f9fade1c0d57a7af66ab4ead7c2eb7b11a91385" });