@model WalletPSBTExportViewModel
@addTagHelper *, BundlerMinifier.TagHelpers
@{
Layout = "../Shared/_NavLayout.cshtml";
ViewData.SetActivePageAndTitle(WalletsNavPages.PSBT, "PSBT Signing", Context.GetStoreData().StoreName);
}
@section PageHeadContent {
}
@section PageFootContent {
This transaction will change your balance: @if (Model.Positive) { @Model.BalanceChange } else { @Model.BalanceChange }
Review the details and export the PSBT for your wallet. Sign the PSBT with your wallet and import the signed version here for finalization and broadcastimg.
}