Documentation
{ "endpoint": "synternet.insights.fbtc.discrepancy", "description": "Stream real-time discrepancy updates between FBTC supply and BTC reserves across all supported 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 (FBTC)", "example": "FBTC" }, "btc_diff": { "type": "number", "format": "decimal", "description": "Difference between total BTC reserves and total FBTC supply across all networks" }, "btc_diff_percentage": { "type": "number", "format": "decimal", "description": "Percentage difference relative to total BTC reserves" } } }, "examples": { "stream_update": { "description": "Example of a discrepancy stream update", "response": { "timestamp": "2024-03-13T15:30:00Z", "asset_name": "FBTC", "btc_diff": 12.45, "btc_diff_percentage": 2.75 } } }, "notes": [ "Provides real-time monitoring of the difference between BTC reserves and FBTC supply across multiple networks", "Positive discrepancy indicates excess BTC in reserves compared to minted FBTC", "Negative discrepancy indicates more FBTC has been minted than there is BTC in reserves", "Percentage is calculated as (btc_diff / total_btc_reserves) * 100", "Includes both fixed and dynamic BTC reserve wallets in the calculation", "Updates are pushed whenever monitoring data changes", "No subscription parameters are required", "All BTC amounts use 8 decimal precision", "Supported networks include Ethereum, BSC, Mantle, Arbitrum, BOB, and Base" ], "update_frequency": "Updates sent with each monitoring data refresh (typically every 15-30 minutes)" }