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

@ViewData["Title"]

Type: @(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 { }