@using BTCPayServer.Abstractions.TagHelpers @using BTCPayServer.Blazor.VaultBridge @using BTCPayServer.TagHelpers @using Microsoft.AspNetCore.Mvc.TagHelpers @model WalletSendVaultModel @{ var walletId = Context.GetRouteValue("walletId")?.ToString() ?? ""; Model.ReturnUrl ??= Url.WalletTransactions(walletId); Layout = "_LayoutWizard"; ViewData.SetActivePage(WalletsNavPages.Send, StringLocalizer["Sign the transaction"], walletId); this.ViewData.SetBlazorAllowed(true); } @section Navbar { }

@ViewData["Title"]

Using BTCPay Server Vault

@section PageFootContent { }