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

@ViewData["Title"]

Crypto services

You can get access here to LND (gRPC, Rest) services exposed by your server
@foreach (var lnd in Model.LNDServices) { }
Crypto Access Type Actions
@lnd.Crypto @lnd.Type See information
@if (Model.ExternalServices.Count != 0) {

Other services

Other external services
@foreach (var s in Model.ExternalServices) { }
Name Actions
@s.Name See information
} @section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }