@model LittleShop.Areas.Admin.Controllers.SystemSettingsViewModel @{ ViewData["Title"] = "System Settings"; }

System Settings

@if (TempData["Success"] != null) { } @if (TempData["Warning"] != null) { } @if (TempData["Error"] != null) { } @if (!string.IsNullOrEmpty(ViewBag.Success)) { } @if (!string.IsNullOrEmpty(ViewBag.Error)) { }
Test Currencies

Enable test currencies for development and testing purposes. These currencies are only available when enabled here.

@foreach (var currency in Model.TestCurrencies) {
}
Production Currencies

Production currencies are always available based on SilverPay support.

Always Enabled:
  • BTC - Bitcoin (Production)
  • ETH - Ethereum (Production)

These currencies are automatically available in the TeleBot based on SilverPay API support.

SilverPay Integration Settings

Configure SilverPay payment gateway integration for cryptocurrency payments.

Example: http://31.97.57.205:8001 or https://api.silverpay.com
Leave empty if SilverPay doesn't require authentication
Used to validate incoming webhook requests from SilverPay
Example: https://yourdomain.com/api/silverpay/webhook
@if (Model.SilverPaySettings.IsConfigured) { Configured @if (Model.SilverPaySettings.LastTestSuccess) { Connected } else { Not Tested } } else { Not Configured }
@if (Model.SilverPaySettings.LastTestDate.HasValue) { @Model.SilverPaySettings.LastTestDate.Value.ToString("yyyy-MM-dd HH:mm:ss") @if (!string.IsNullOrEmpty(Model.SilverPaySettings.LastTestMessage)) { @Model.SilverPaySettings.LastTestMessage } } else { Never tested }
@section Scripts { }