diff --git a/frontend/public/explorer-spa.js b/frontend/public/explorer-spa.js
index df42310..2e4ffa0 100644
--- a/frontend/public/explorer-spa.js
+++ b/frontend/public/explorer-spa.js
@@ -2232,29 +2232,77 @@
}
window._showAddresses = renderAddressesView;
- // Analytics view (Track 3+)
+ function buildAnalyticsViewHtml() {
+ var html = '';
+ html += '
';
+ html += '
';
+ html += '
';
+ html += '
';
+ html += '
Live Network Analytics
';
+ html += '
Analytics surfaces are consolidated into the live explorer dashboards instead of a separate unfinished panel. Use this page as a hub to the active gas, block, bridge, and route monitoring views.
';
+ return html;
+ }
+
+ // Analytics view
function renderAnalyticsView() {
- if (!hasAccess(3)) {
- showToast('Analytics features require Track 3 access. Please connect your wallet and ensure you are approved.', 'error');
- return;
- }
- switchToView('analytics');
+ showView('analytics');
+ if ((window.location.pathname || '').replace(/^\//, '').split('/')[0] !== 'analytics') updatePath('/analytics');
+ var container = document.getElementById('analyticsContent');
+ if (!container) return;
+ container.innerHTML = buildAnalyticsViewHtml();
}
window._showAnalytics = renderAnalyticsView;
- // Operator view (Track 4)
+ function buildOperatorViewHtml() {
+ var html = '';
+ html += '
';
+ html += '
';
+ html += '
';
+ html += '
';
+ html += '
Operator Access Hub
';
+ html += '
The explorer does not expose raw privileged controls here. Instead, this page collects the live operator-facing observability and execution surfaces that are safe to browse from the public UI.