using System.Numerics; using System.Threading.Tasks; namespace Nethereum.RPC.Fee1559Suggestions { public interface IFee1559SuggestionStrategy { #if !DOTNET35 Task SuggestFeeAsync(BigInteger? maxPriorityFeePerGas = null); #endif } }