@using BTCPayServer.Controllers @inject BTCPayServer.Security.ContentSecurityPolicies Csp @model WalletPSBTViewModel @{ var walletId = Context.GetRouteValue("walletId").ToString(); Model.ReturnUrl ??= Url.WalletTransactions(walletId); Layout = "_LayoutWizard"; ViewData.SetActivePage(WalletsNavPages.PSBT, StringLocalizer["Decode PSBT"], walletId); Csp.UnsafeEval(); } @section Navbar { } @section PageHeadContent { } @section PageFootContent { }

@ViewData["Title"]

You can decode a PSBT by either pasting its content, uploading the file or scanning the wallet QR code.

@if (Model.Errors != null && Model.Errors.Count != 0) { }