@using MoneroLikePaymentMethodViewModel = BTCPayServer.Services.Altcoins.Monero.UI.UIMoneroLikeStoreController.MoneroLikePaymentMethodViewModel @using MoneroLikeSettlementThresholdChoice = BTCPayServer.Services.Altcoins.Monero.UI.UIMoneroLikeStoreController.MoneroLikeSettlementThresholdChoice; @model MoneroLikePaymentMethodViewModel @{ ViewData.SetActivePage(Model.CryptoCode, $"{Model.CryptoCode} Settings", Model.CryptoCode); }
@if (!ViewContext.ModelState.IsValid) {
} @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") }