@model StoreViewModel @{ Layout = "../Shared/_NavLayout.cshtml"; ViewData["Title"] = "Profile"; ViewData.AddActivePage(BTCPayServer.Views.Stores.StoreNavPages.Index); }

@ViewData["Title"]

@Html.Partial("_StatusMessage", Model.StatusMessage)

Current price source is @Model.PreferredExchange. (using 1 minute cache)

Derivation Scheme
The DerivationScheme represents the destination of the funds received by your invoice on chain.
Add or modify a derivation scheme @foreach(var scheme in Model.DerivationSchemes) { }
Crypto Derivation Scheme
@scheme.Crypto @scheme.Value
Lightning nodes (Experimental)

A connection to a lightning charge node is required to generate lignting network enabled invoices.
This is experimental and not advised for production so keep in mind:

Add or modify a lightning node @foreach(var scheme in Model.LightningNodes) { }
Crypto Address
@scheme.CryptoCode @scheme.Address
@section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }