1
web3.eth.sendTransaction({from : web3.eth.accounts[0], to : c.address, value : web3.toWei(50)}, console.log);
我能夠返回交易散列。如何顯示智能合約中的所有事件日誌?
但是,如何從智能合約返回的交易中捕獲所有事件日誌?
web3.eth.sendTransaction({from : web3.eth.accounts[0], to : c.address, value : web3.toWei(50)}, console.log);
我能夠返回交易散列。如何顯示智能合約中的所有事件日誌?
但是,如何從智能合約返回的交易中捕獲所有事件日誌?
您需要觀看活動。
const filter = { address: web3.eth.accounts[0] }; // filter for your address
const events = c.allEvents(filter); // get all events
events.watch(function(error, result) {
if (!error)
console.log(log);
});
});
您可以閱讀更多關於它here。