using System.Threading.Tasks; using Nethereum.JsonRpc.Client; namespace Nethereum.RPC.Eth.Mining { public interface IEthSubmitWork { RpcRequest BuildRequest(string nonce, string header, string mix, object id = null); Task SendRequestAsync(string nonce, string header, string mix, object id = null); } }