changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "properties": {
+ "fee": {
+ "description": "Transaction fee in satoshis",
+ "type": "number"
+ },
+ "locktime": {
+ "description": "Lock time",
+ "type": "number"
+ },
+ "size": {
+ "description": "Transaction size in bytes",
+ "type": "number"
+ },
+ "status": {
+ "description": "Transaction confirmation status",
+ "properties": {
+ "block_hash": {
+ "description": "Block hash of confirmation",
+ "type": "string"
+ },
+ "block_height": {
+ "description": "Block height of confirmation",
+ "type": "number"
+ },
+ "block_time": {
+ "description": "Block time of confirmation",
+ "type": "number"
+ },
+ "confirmed": {
+ "description": "Is transaction confirmed",
+ "type": "boolean"
+ }
+ },
+ "type": "object"
+ },
+ "txid": {
+ "description": "Transaction ID",
+ "type": "string"
+ },
+ "version": {
+ "description": "Transaction version",
+ "type": "number"
+ },
+ "vin": {
+ "description": "Input array",
+ "items": {
+ "properties": {
+ "scriptsig": {
+ "description": "Script signature",
+ "type": "string"
+ },
+ "sequence": {
+ "description": "Sequence number",
+ "type": "number"
+ },
+ "txid": {
+ "description": "Input TXID",
+ "type": "string"
+ },
+ "vout": {
+ "description": "Output index",
+ "type": "number"
+ },
+ "witness": {
+ "description": "Witness data",
+ "type": "array"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "vout": {
+ "description": "Output array",
+ "items": {
+ "properties": {
+ "scriptpubkey": {
+ "description": "Script pubkey",
+ "type": "string"
+ },
+ "scriptpubkey_address": {
+ "description": "Script pubkey address",
+ "type": "string"
+ },
+ "scriptpubkey_asm": {
+ "description": "Script pubkey assembly",
+ "type": "string"
+ },
+ "scriptpubkey_type": {
+ "description": "Script pubkey type",
+ "type": "string"
+ },
+ "value": {
+ "description": "Output value in satoshis",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "weight": {
+ "description": "Transaction weight",
+ "type": "number"
+ }
+ },
+ "type": "object"
+}