@model WalletPSBTReadyViewModel @if (Model.CanCalculateBalance) {

This transaction will change your balance:
@Model.BalanceChange

}

Inputs

@foreach (var input in Model.Inputs) { @if (input.Error != null) { } else { } }
Index Amount
@input.Index @input.Index@input.BalanceChange

Outputs

@foreach (var destination in Model.Destinations) { }
Destination Amount
@destination.Destination @destination.Balance
@if (Model.FeeRate != null) {

Transaction fee rate: @Model.FeeRate

}