@using Breez.Sdk.Spark @using BTCPayServer @using BTCPayServer.Models.StoreViewModels @using BTCPayServer.Plugins.BreezSpark @using BTCPayServer.Security @using BTCPayServer.Services.Invoices @using Microsoft.AspNetCore.Mvc.TagHelpers @inject BreezSparkService BreezService @inject PaymentMethodHandlerDictionary PaymentMethodHandlerDictionary @* @inject BTCPayNetworkProvider BTCPayNetworkProvider *@ @{ Layout = "_Layout"; ViewData.SetActivePage("Breez", "Swap Out", "SwapOut"); string storeId = null; if (Model is string s) { storeId = s; } else if (Model is StoreDashboardViewModel dashboardModel) { storeId = dashboardModel.StoreId; } else { storeId = Context.GetImplicitStoreId(); } // Simplified fee structure for SDK v0.4.1 compatibility var fastFee = 10; var slowFee = 5; var minFee = 1; }