changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "address": {
+ "description": "Bitcoin address",
+ "type": "string"
+ },
+ "chain_stats": {
+ "description": "Chain statistics",
+ "properties": {
+ "funded_txo_count": {
+ "description": "Funded output count",
+ "type": "number"
+ },
+ "funded_txo_sum": {
+ "description": "Funded sum in satoshis",
+ "type": "number"
+ },
+ "spent_txo_count": {
+ "description": "Spent output count",
+ "type": "number"
+ },
+ "spent_txo_sum": {
+ "description": "Spent sum in satoshis",
+ "type": "number"
+ },
+ "tx_count": {
+ "description": "Total transaction count",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "mempool_stats": {
+ "description": "Mempool statistics",
+ "properties": {
+ "funded_txo_count": {
+ "description": "Mempool funded count",
+ "type": "number"
+ },
+ "funded_txo_sum": {
+ "description": "Mempool funded sum",
+ "type": "number"
+ },
+ "spent_txo_count": {
+ "description": "Mempool spent count",
+ "type": "number"
+ },
+ "spent_txo_sum": {
+ "description": "Mempool spent sum",
+ "type": "number"
+ },
+ "tx_count": {
+ "description": "Mempool transaction count",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ }
+ },
+ "type": "object"
+}