@using NBitcoin.DataEncoders @using Newtonsoft.Json @using System.Text @using BTCPayServer.Abstractions.Models @model WalletSettingsViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["NavPartialName"] = "../UIWallets/_Nav"; ViewData.SetActivePage(StoreNavPages.OnchainSettings, $"{Model.CryptoCode} Wallet Settings", Context.GetStoreData().Id); } @section PageHeadContent { }

@ViewData["Title"]

@(Model.IsHotWallet ? "Hot wallet" : "Watch-only wallet")
@if (!string.IsNullOrEmpty(Model.DerivationSchemeInput) && Model.DerivationSchemeInput != Model.DerivationScheme) {
} @for (var i = 0; i < Model.AccountKeys.Count; i++) {

Account Key @i

@if (Model.IsMultiSig) {
} }

Payment

@if (Model.CanUsePayJoin) { }
minutes
Fee will be shown for BTC and LTC onchain payments only.
@section PageFootContent { }