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

@ViewData["Title"]

Derivation Scheme
The DerivationScheme represents the destination of the funds received by your invoice on chain.
@foreach(var scheme in Model.DerivationSchemes) { }
Crypto Derivation Scheme Actions
@scheme.Crypto @scheme.Value @if(!string.IsNullOrWhiteSpace(scheme.Value)) { Wallet - } Modify
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.

@foreach(var scheme in Model.LightningNodes) { }
Crypto Address Actions
@scheme.CryptoCode @scheme.Address Modify

Available placeholders are: {StoreName}, {ItemDescription} and {OrderId}

@section Scripts { @await Html.PartialAsync("_ValidationScriptsPartial") }