using System.Numerics; using System.Threading; using System.Threading.Tasks; namespace Nethereum.RPC.Eth.Blocks { public interface ILastConfirmedBlockNumberService { Task GetLastConfirmedBlockNumberAsync(BigInteger? waitForConfirmedBlockNumber, CancellationToken cancellationToken); } }