@model WalletPSBTViewModel
@addTagHelper *, BundlerMinifier.TagHelpers
@{
var walletId = Context.GetRouteValue("walletId").ToString();
var isReady = !Model.HasErrors;
var isSignable = !isReady;
var needsExport = !isSignable && !isReady;
Layout = "_LayoutWizard";
ViewData.SetActivePage(WalletsNavPages.PSBT, isReady ? "Confirm broadcasting this transaction" : "Transaction Details", walletId);
var returnUrl = this.Context.Request.Query["returnUrl"].FirstOrDefault();
}
@section PageHeadContent {
}
@section PageFootContent {
@ViewData["Title"]
Export the PSBT for your wallet. Sign it with your wallet and import the signed PSBT version here for finalization and broadcasting.
}@Model.PSBT
@Model.PSBTHex
@Model.Decoded