@using BTCPayServer.Abstractions.Contracts @using BTCPayServer.Plugins.FujiOracle @inject IScopeProvider ScopeProvider @inject FujiOracleService FujiOracleService @{ var storeId = ScopeProvider.GetCurrentStoreId(); FujiOracleSettings settings = null; if (!string.IsNullOrEmpty(storeId)) { try { settings = await FujiOracleService.GetFujiOracleForStore(storeId); } catch (Exception) { } } } @if (!string.IsNullOrEmpty(storeId)) {