@using BTCPayServer.Controllers @model WalletSigningOptionsModel @inject BTCPayNetworkProvider BTCPayNetworkProvider @{ var walletId = WalletId.Parse(Context.GetRouteValue("walletId").ToString()); Model.ReturnUrl ??= Url.WalletTransactions(walletId); Layout = "_LayoutWizard"; ViewData.SetActivePage(WalletsNavPages.Send, StringLocalizer["Sign the transaction"], walletId.ToString()); } @section Navbar { }

Choose your signing method

You can sign the transaction using one of the following methods.

@if (BTCPayNetworkProvider.GetNetwork(walletId.CryptoCode).VaultSupported) {
}