@using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Plugins.SideShift @using Microsoft.AspNetCore.Mvc.TagHelpers @using Microsoft.AspNetCore.Routing @inject SideShiftService SideShiftService @inject IScopeProvider ScopeProvider @{ var storeId = ScopeProvider.GetCurrentStoreId(); SideShiftSettings settings = null; if (!string.IsNullOrEmpty(storeId)) { try { settings = await SideShiftService.GetSideShiftForStore(storeId); } catch (Exception) { } } } @if (!string.IsNullOrEmpty(storeId)) {
  • SideShift Allows your customers to pay with altcoins that are not supported by BTCPay Server. @if (settings?.Enabled is true) { Enabled | Modify } else { Disabled Setup }
  • }