using System.Threading.Tasks; using Nethereum.Hex.HexTypes; using Nethereum.JsonRpc.Client; namespace Nethereum.RPC.Eth.Uncles { public interface IEthGetUncleCountByBlockHash { RpcRequest BuildRequest(string hash, object id = null); Task SendRequestAsync(string hash, object id = null); } }