@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; } @{ @* TODO: Fix derivation settings for v2.2.1 - GetDerivationSchemeSettings method signature changed *@ var hasStoreWallet = false; if (hasStoreWallet) { } }

@ViewData["Title"]

Choose from preset fee rates or enter custom value

Minimum: 1000 sats, Maximum: 10000000 sats