using System.Threading.Tasks; using Nethereum.JsonRpc.Client; using Nethereum.RPC.Eth.DTOs; namespace Nethereum.RPC.Eth.Transactions { public interface IEthSendTransaction { RpcRequest BuildRequest(TransactionInput input, object id = null); Task SendRequestAsync(TransactionInput input, object id = null); } }