@using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Plugins.FixedFloat @using Microsoft.AspNetCore.Routing @inject FixedFloatService FixedFloatService @inject IScopeProvider ScopeProvider @{ var storeId = ScopeProvider.GetCurrentStoreId(); FixedFloatSettings settings = null; if (!string.IsNullOrEmpty(storeId)) { try { settings = await FixedFloatService.GetFixedFloatForStore(storeId); } catch (Exception) { } } } @if (!string.IsNullOrEmpty(storeId)) {
  • FixedFloat Allows your customers to pay with altcoins that are not supported by BTCPay Server. @if (settings?.Enabled is true) { Enabled | Modify } else { Disabled Setup }
  • }