@model BTCPayServer.Models.ServerViewModels.ServicesViewModel @{ ViewData.SetActivePageAndTitle(ServerNavPages.Services); }

@ViewData["Title"]

You can get access here to LND (gRPC, Rest) or SSH services exposed by your server
@foreach (var lnd in Model.LNDServices) { } @if (Model.HasSSH) { }
Crypto Access Type Actions
@lnd.Crypto LND @lnd.Type.ToString() @if (lnd.Type == BTCPayServer.Configuration.External.LndTypes.gRPC) { See information } else if (lnd.Type == BTCPayServer.Configuration.External.LndTypes.Rest) { See information }
None SSH See information
@section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }