@addTagHelper *, BundlerMinifier.TagHelpers @using Microsoft.AspNetCore.Mvc.ModelBinding @model WalletSendModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Manage wallet"; ViewData.SetActivePageAndTitle(WalletsNavPages.Send); } @if (TempData.HasStatusMessage()) {
}
@for (int i = 0; i < Model.RecommendedSatoshiPerByte.Length; i++) { }
    @foreach (var errors in ViewData.ModelState.Where(pair => pair.Key == string.Empty && pair.Value.ValidationState == ModelValidationState.Invalid)) { foreach (var error in errors.Value.Errors) {
  • @error.ErrorMessage
  • } }
@if (Model.InputSelection) {

} @if (Model.Outputs.Count == 1) {

Your current balance is @Model.CryptoCode.

} else {
Destinations
@for (var index = 0; index < Model.Outputs.Count; index++) {

Your current balance is @Model.CryptoCode.

}
}

Target confirmation in: @for (int i = 0; i < Model.RecommendedSatoshiPerByte.Length; i++) { if (Model.RecommendedSatoshiPerByte[i] is null) continue; . }

@if (Model.Outputs.Count == 1) {
}
@if (Model.SupportRBF) { } @if (!string.IsNullOrEmpty(Model.PayJoinEndpointUrl)) {
}
@section HeadScripts { }