Blockchain.com Bitcoin Transactions


Stuff You Need to Know

This component streams transactions on the bitcoin blockchain from Blockchain.com in real time.
Use the button on the bottom of the component to turn the stream on and off. Pressing it once subscribes to the service and turns on the stream. Pressing it again stops the stream and unsubscribes from the service.

How to Configure

Component-specific settings:
  • Raw Transactions (not simplified) (checkbox) - When you check this box, you will receive the full json from the Blockchain.com API. We have simplified it down to the most common properties for less complex use cases.

Standard settings:

Click here to view information on standard settings.


What Happens Next

If the Raw Transactions checkbox is unchecked, you get this:

{
  "hash": "624d5f7b21f5cef2dfacffa11d3df48bde253067daf4fe2f9e66ea248c3bf709",
  "from": [
    {
      "address": "3BU4neHNyRHAVd9CtdGHFrMLx3uT5YC4s2",
      "sats": 6901843,
      "btc": 0.06901843
    }
  ],
  "to": [
    {
      "address": "3PbEHc3gx8k5zxkNo9r322RSsAYb27A7PL",
      "sats": 1290805,
      "btc": 0.01290805
    },
    {
      "address": "bc1qd9ppvrhq3trnedls4ump62herjgqjy3uvcp26t",
      "sats": 5607542,
      "btc": 0.05607542
    }
  ],
  "totalSpent": 0.06901843
}


If you select the Raw Transactions checkbox, it will look like this:

{
  "op": "utx",
  "x": {
    "lock_time": 0,
    "ver": 2,
    "size": 247,
    "inputs": [
      {
        "sequence": 4294967294,
        "prev_out": {
          "spent": false,
          "tx_index": 0,
          "type": 0,
          "addr": "3PEonFtcfGdfJu6SofLcStaqYWezZNRYT3",
          "value": 8709521,
          "n": 1,
          "script": "a914ec5dd0ddb067336a97237d734301b7a819281dd387"
        },
        "script": "160014eedca26868809561e772bb5f26f93bafe330ea9d"
      }
    ],
    "time": 1579208158,
    "tx_index": 0,
    "vin_sz": 1,
    "hash": "8691c0888a54031582a9f17276ff45d74d9fc55fc38d410d2facf04e455de7ad",
    "vout_sz": 2,
    "relayed_by": "",
    "out": [
      {
        "spent": false,
        "tx_index": 0,
        "type": 0,
        "addr": "3Fv9j6XVB85ovF51ZHzYy5TCmXGgngyY63",
        "value": 110982,
        "n": 0,
        "script": "a9149c0dae892d96ba3285cdc45c92b1258dd316a9d087"
      },
      {
        "spent": false,
        "tx_index": 0,
        "type": 0,
        "addr": "32vexxXhoNKGzAbeWnXWMVn63AWrb658Pe",
        "value": 8591539,
        "n": 1,
        "script": "a9140d8c743eaff91b84fae364730bebaf31b09de3d587"
      }
    ]
  }
}


Want More Info?

Read more about Deeper Bitcoin Transaction Information. Want to see more from Blockchain.com? Contact us here for more info!