Documentation
{ "endpoint": "synternet.insights.tbtc.discrepancy", "description": "Stream real-time discrepancy updates between tBTC supply and BTC custodial reserves across all networks", "payload": {}, "response": { "type": "object", "properties": { "timestamp": { "type": "string", "format": "date-time", "description": "Timestamp when the discrepancy was calculated" }, "asset_name": { "type": "string", "description": "Name of the asset (tBTC)", "example": "tBTC" }, "btc_diff": { "type": "number", "format": "decimal", "description": "Difference between total BTC in custodial wallets and total tBTC supply" }, "btc_diff_percentage": { "type": "number", "format": "decimal", "description": "Percentage difference relative to total BTC custodial balance" } } }, "examples": { "stream_update": { "description": "Example of a discrepancy stream update", "response": { "timestamp": "2024-03-13T15:30:45Z", "asset_name": "tBTC", "btc_diff": 18.75, "btc_diff_percentage": 3.92 } } }, "notes": [ "Provides real-time monitoring of the difference between BTC reserves and tBTC supply", "Positive discrepancy indicates excess BTC in custodial wallets", "Negative discrepancy indicates insufficient BTC backing", "Percentage is calculated as (btc_diff / total_btc_supply) * 100", "Updates are pushed whenever monitoring data changes", "No subscription parameters are required", "All BTC amounts use 8 decimal precision" ], "update_frequency": "Updates sent every 15 minutes with monitoring data refresh" }