Documentation
{ "endpoint": "synternet.insights.wbtc.discrepancy", "description": "Stream real-time discrepancy updates between WBTC 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 (WBTC)", "example": "WBTC" }, "btc_diff": { "type": "number", "format": "decimal", "description": "Difference between total BTC in custodial wallets and total WBTC 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-26T12:34:56Z", "asset_name": "WBTC", "btc_diff": 23.25, "btc_diff_percentage": 4.88 } } }, "notes": [ "Provides real-time monitoring of the difference between BTC reserves and WBTC 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" }