Some checks failed
CI/CD Pipeline / Solidity Contracts (push) Failing after 1m27s
CI/CD Pipeline / Security Scanning (push) Successful in 2m37s
CI/CD Pipeline / Lint and Format (push) Failing after 53s
CI/CD Pipeline / Terraform Validation (push) Failing after 31s
CI/CD Pipeline / Kubernetes Validation (push) Successful in 29s
HYBX OMNL TypeScript & anchor / token-aggregation build + reconcile artifact (push) Failing after 37s
Validation / validate-genesis (push) Successful in 34s
Validation / validate-terraform (push) Failing after 33s
Validation / validate-kubernetes (push) Failing after 13s
Validation / validate-smart-contracts (push) Failing after 11s
Validation / validate-security (push) Failing after 1m26s
Validation / validate-documentation (push) Failing after 19s
Refreshes ho-liquidity-snapshot every 30 minutes with aggregate supplyNostroMatch and reserve alerts; embeds nostro/reserve KPIs in the OMNL compliance console; includes payout journal routes needed for token-aggregation build. Co-authored-by: Cursor <cursoragent@cursor.com>
84 lines
2.6 KiB
HTML
84 lines
2.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<meta name="omnl-api-base" content="/token-aggregation/api/v1" />
|
|
<title>OMNL Compliance Console</title>
|
|
<link rel="stylesheet" href="/omnl/static/omnl-compliance-console.css" />
|
|
</head>
|
|
<body>
|
|
<div class="wrap">
|
|
<header>
|
|
<div>
|
|
<h1>OMNL Compliance Console</h1>
|
|
<p class="sub">HYBX · IPSAS / IFRS / US GAAP · Web3 notary & reserve attestation · Chain 138</p>
|
|
</div>
|
|
<div class="toolbar">
|
|
<button type="button" id="btn-refresh">Refresh</button>
|
|
<button type="button" class="primary" id="btn-download-safe">Download Safe tx</button>
|
|
<button type="button" id="btn-toggle-raw">Raw JSON</button>
|
|
<a class="btn" href="/omnl/dashboard">Legacy dashboard</a>
|
|
<a class="btn" href="/api/v1/omnl/openapi.json">OpenAPI</a>
|
|
</div>
|
|
</header>
|
|
|
|
<div id="load-status" class="status-bar loading">Initializing…</div>
|
|
<p id="refreshed-at" class="sub" style="margin-top:-0.5rem"></p>
|
|
|
|
<section class="section">
|
|
<h2>Posture</h2>
|
|
<div id="posture-grid" class="grid"></div>
|
|
</section>
|
|
|
|
<section class="section">
|
|
<h2>Pending actions</h2>
|
|
<div id="pending-actions"></div>
|
|
</section>
|
|
|
|
<div class="grid" style="grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));">
|
|
<section class="section card">
|
|
<h2>On-chain evidence</h2>
|
|
<div id="evidence-kv"></div>
|
|
</section>
|
|
<section class="section card">
|
|
<h2>Gnosis Safe</h2>
|
|
<div id="safe-kv"></div>
|
|
</section>
|
|
<section class="section card">
|
|
<h2>External visibility</h2>
|
|
<div id="external-kv"></div>
|
|
</section>
|
|
</div>
|
|
|
|
<section class="section card">
|
|
<h2>HO nostro & reserve coverage</h2>
|
|
<div id="ho-liquidity-kv"></div>
|
|
</section>
|
|
|
|
<section class="section card">
|
|
<h2>Triple-state reconcile</h2>
|
|
<div id="triple-summary"></div>
|
|
</section>
|
|
|
|
<section class="section card">
|
|
<h2>Sign-offs</h2>
|
|
<div id="signoffs-summary"></div>
|
|
</section>
|
|
|
|
<section id="raw-section" class="section hidden">
|
|
<h2>Full snapshot</h2>
|
|
<pre id="raw-json" class="raw">{}</pre>
|
|
</section>
|
|
|
|
<footer>
|
|
<p>
|
|
Auth: pass <code>?access_token=</code> when <code>OMNL_API_KEY</code> or <code>OMNL_DASHBOARD_TOKEN</code> is set.
|
|
API: <a href="/api/v1/omnl/compliance/console">/api/v1/omnl/compliance/console</a>
|
|
</p>
|
|
</footer>
|
|
</div>
|
|
<script src="/omnl/static/omnl-compliance-console.js"></script>
|
|
</body>
|
|
</html>
|