@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 Labels Amount
@input.Index @input.Index @foreach (var label in input.Labels) {
@label.Key
}
@input.BalanceChange

Outputs

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

Transaction fee rate: @Model.FeeRate

}