@using Microsoft.AspNetCore.Mvc.ModelBinding @model WalletSendModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Manage wallet"; ViewData.SetActivePageAndTitle(WalletsNavPages.Send); }
    @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.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.

}
}

The recommended value is satoshi per byte.

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

@if (Model.SupportRBF) { }
@section Scripts { }