chore: sync submodule state (parent ref update)

Made-with: Cursor
This commit is contained in:
defiQUG
2026-03-02 12:14:09 -08:00
parent 50ab378da9
commit 5efe36b1e0
1100 changed files with 155024 additions and 8674 deletions

View File

@@ -0,0 +1,11 @@
export const metrics = {
etherlink_relay_messages_detected_total: 0,
etherlink_relay_submissions_success_total: 0,
etherlink_relay_submissions_failed_total: 0,
etherlink_relay_queue_depth: 0,
};
export function incrementDetected() { metrics.etherlink_relay_messages_detected_total++; }
export function incrementSuccess() { metrics.etherlink_relay_submissions_success_total++; }
export function incrementFailed() { metrics.etherlink_relay_submissions_failed_total++; }
export function setQueueDepth(n) { metrics.etherlink_relay_queue_depth = n; }
export function getMetrics() { return { ...metrics }; }