using System.Threading.Tasks; namespace Nethereum.JsonRpc.Client { public interface IClient : IBaseClient { Task SendRequestAsync(RpcRequest request, string route = null); Task SendRequestAsync(string method, string route = null, params object[] paramList); } }