@using BTCPayServer.Views.Stores @using BTCPayServer.Abstractions.Extensions @model BTCPayServer.Services.Altcoins.Zcash.UI.UIZcashLikeStoreController.ZcashLikePaymentMethodViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["NavPartialName"] = "../UIStores/_Nav"; ViewData.SetActivePage(StoreNavPages.OnchainSettings, $"{Model.CryptoCode} Settings"); }
@if (Model.Summary != null) {
  • Node available: @Model.Summary.DaemonAvailable
  • Wallet available: @Model.Summary.WalletAvailable (@(Model.WalletFileFound ? "Wallet file present" : "Wallet file not found"))
  • Last updated: @Model.Summary.UpdatedAt
  • Synced: @Model.Summary.Synced (@Model.Summary.CurrentHeight / @Model.Summary.TargetHeight)
} @if (!Model.WalletFileFound || Model.Summary.WalletHeight == default) {

Upload Wallet

}
@if (!Model.WalletFileFound || Model.Summary.WalletHeight == default) { } else {
@if (@Model.Accounts != null && Model.Accounts.Any()) { } else { No accounts available on the current wallet }
}
@section PageFootContent { @await Html.PartialAsync("_ValidationScriptsPartial") }