Nethereum

乙太坊。web3.eth.filter(’latest’).watch() 的模擬

  • February 1, 2017

我需要觀察區塊鏈的變化。對於 web3.js,這很簡單。

web3.eth.filter('latest').watch(function () {
           //some code
       });

如何在 Nethereum 中實現這一點?

從官方文件看來,這web3.eth.filter還沒有實現:

我們目前有:

Eth、Net、Miner、Admin、Personal 和 DebugGeth。Eth、Net 如前所述是標準 Eth 的通用性,Miner、Admin、Personal 和 DebugGeth 屬於管理 RPC。

> web3.Eth.Transactions.GetTransactionReceipt;
> web3.Eth.Transactions.Call; web3.Eth.Transactions.EstimateGas;
> web3.Eth.Transactions.GetTransactionByBlockHashAndIndex;
> web3.Net.PeerCount; web3.Eth.GetBalance; web3.Eth.Mining.IsMining;
> web3.Eth.Accounts;

引用自:https://ethereum.stackexchange.com/questions/11773