@addTagHelper *, BundlerMinifier.TagHelpers @using Microsoft.AspNetCore.Mvc.ModelBinding @using BTCPayServer.Views @model WalletSendModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Manage wallet"; ViewData.SetActivePageAndTitle(WalletsNavPages.Send); } @if (TempData.HasStatusMessage()) {
}
    @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.

}
}
@if (Model.RecommendedSatoshiPerByte.Any()) {
Confirm in the next
@for (var index = 0; index < Model.RecommendedSatoshiPerByte.Count; index++) { var feeRateOption = Model.RecommendedSatoshiPerByte[index]; }
}
@if (Model.Outputs.Count == 1) {
}
@if (Model.SupportRBF) {
} @if (!string.IsNullOrEmpty(Model.PayJoinBIP21)) {
}
@section HeadScripts { }