@model WalletPSBTViewModel
@addTagHelper *, BundlerMinifier.TagHelpers
@{
var isReady = !Model.HasErrors;
var isSignable = !isReady && Model.NBXSeedAvailable;
var needsExport = !isSignable && !isReady;
Layout = "_LayoutWizard";
ViewData.SetActivePageAndTitle(WalletsNavPages.PSBT, isReady ? "Confirm broadcasting this transaction" : "Transaction Details", Context.GetStoreData().StoreName);
}
@section PageHeadContent {
}
@section PageFootContent {
@ViewData["PageTitle"]
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