diff --git a/CryptoExchange.Net/ExtensionMethods.cs b/CryptoExchange.Net/ExtensionMethods.cs index 363959c..41b4473 100644 --- a/CryptoExchange.Net/ExtensionMethods.cs +++ b/CryptoExchange.Net/ExtensionMethods.cs @@ -435,6 +435,8 @@ namespace CryptoExchange.Net services.AddTransient(x => (IWithdrawalRestClient)client(x)!); if (typeof(IWithdrawRestClient).IsAssignableFrom(typeof(T))) services.AddTransient(x => (IWithdrawRestClient)client(x)!); + if (typeof(IFeeRestClient).IsAssignableFrom(typeof(T))) + services.AddTransient(x => (IFeeRestClient)client(x)!); if (typeof(ISpotOrderRestClient).IsAssignableFrom(typeof(T))) services.AddTransient(x => (ISpotOrderRestClient)client(x)!);