Skip to content

Commit c072fd2

Browse files
committed
chore(audit-live): add V2 (Leptos) explorer to surface
V2 (scan.sentriscloud.com + scan-testnet.sentriscloud.com) was missing from the live audit surface. Both stay live alongside V1 per ops direction; the audit needs to monitor both. Renamed v1 entries with explicit `-v1` suffix for symmetry. Verified locally: clean across all 17 surface URLs.
1 parent 7b655e0 commit c072fd2

1 file changed

Lines changed: 11 additions & 5 deletions

File tree

scripts/audit-live.mjs

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,17 @@ const JSON_OUT = process.argv.includes("--json");
2424
// fires without actually owning a real testnet tx). Those console 404s
2525
// are filtered out of the issue count.
2626
const SURFACE = [
27-
{ app: "scan", url: "https://scan.sentrixchain.com" },
28-
{ app: "scan-tx-mainnet", url: "https://scan.sentrixchain.com/tx/0xdeadbeef", expectNotFound: true },
29-
{ app: "scan-tx-testnet", url: "https://scan.sentrixchain.com/tx/0xdeadbeef?network=testnet", expectNotFound: true },
30-
{ app: "scan-block-mainnet", url: "https://scan.sentrixchain.com/blocks/1" },
31-
{ app: "scan-leaderboard", url: "https://scan.sentrixchain.com/leaderboard" },
27+
{ app: "scan-v1", url: "https://scan.sentrixchain.com" },
28+
{ app: "scan-v1-tx-mainnet", url: "https://scan.sentrixchain.com/tx/0xdeadbeef", expectNotFound: true },
29+
{ app: "scan-v1-tx-testnet", url: "https://scan.sentrixchain.com/tx/0xdeadbeef?network=testnet", expectNotFound: true },
30+
{ app: "scan-v1-block", url: "https://scan.sentrixchain.com/blocks/1" },
31+
{ app: "scan-v1-leaderboard", url: "https://scan.sentrixchain.com/leaderboard" },
32+
// V2 (Leptos) — separate sentriscloud.com hosts. Coexists with V1 per
33+
// user direction; both monitored permanently.
34+
{ app: "scan-v2", url: "https://scan.sentriscloud.com" },
35+
{ app: "scan-v2-block", url: "https://scan.sentriscloud.com/block/1" },
36+
{ app: "scan-v2-testnet", url: "https://scan-testnet.sentriscloud.com" },
37+
{ app: "scan-v2-testnet-blk", url: "https://scan-testnet.sentriscloud.com/block/1" },
3238
{ app: "solux", url: "https://solux.sentriscloud.com" },
3339
{ app: "sentriscloud", url: "https://sentriscloud.com" },
3440
{ app: "sentrixchain", url: "https://sentrixchain.com" },

0 commit comments

Comments
 (0)