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);
});
});
你可以在这里阅读更多关于它的信息。