Skip to content

Instantly share code, notes, and snippets.

@christroutner
Last active March 13, 2020 20:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christroutner/f7fb8796168b66728b79e439dd75b815 to your computer and use it in GitHub Desktop.
Save christroutner/f7fb8796168b66728b79e439dd75b815 to your computer and use it in GitHub Desktop.
Insight vs Ninsight

Insight vs Ninsight Comparison

This document captures the differences between Insight and Ninsight BCH indexers for the most commonly used endpoints on rest.bitcoin.com.

This BCH address is used for comparison:

  • bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj

The test results below are from running rest.bitcoin.com locally, but pointing at Insight in one case, and then pointing at Ninsight in the other case.

Summary

Insight and Ninsight are nearly identical. The only differences:

  • A minor difference in how the assembly representation of a script signature is displayed in a transaction input.
  • Ninsight has an additional firstSeenTime property in transaction data that Insight does not have.

Additional notes

  • The /unconfirmed endpoint was not tested as unconfirmed transactions are temporary in nature and hard to compare.
  • The block/:hash endpoint was also compared, but is not included here. There were only trival differences and this endpoint is not frequently used by rest.bitcoin.com.

Address Balance

http://localhost:3000/v2/address/details/bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj

Insight

{
  "balance": 0.00001,
  "balanceSat": 1000,
  "totalReceived": 0.00001,
  "totalReceivedSat": 1000,
  "totalSent": 0,
  "totalSentSat": 0,
  "unconfirmedBalance": 0.000009,
  "unconfirmedBalanceSat": 900,
  "unconfirmedTxApperances": 1,
  "txApperances": 2,
  "transactions": [
    "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
    "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c"
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "slpAddress": "simpleledger:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwcj8k6q6dv",
  "currentPage": 0,
  "pagesTotal": 1
}

Ninsight

{
  "balance": 0.000019,
  "balanceSat": 1900,
  "totalReceived": 0.000019,
  "totalReceivedSat": 1900,
  "totalSent": 0,
  "totalSentSat": 0,
  "unconfirmedBalance": 0,
  "unconfirmedBalanceSat": 0,
  "unconfirmedTxApperances": 0,
  "txApperances": 2,
  "transactions": [
    "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
    "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c"
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "slpAddress": "simpleledger:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwcj8k6q6dv",
  "currentPage": 0,
  "pagesTotal": 1
}

Differences

  • none

Address UTXO

http://localhost:3000/v2/address/utxo/bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj

Insight

{
  "utxos": [
    {
      "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
      "vout": 0,
      "amount": 0.000009,
      "satoshis": 900,
      "confirmations": 0,
      "ts": 1584128086
    },
    {
      "txid": "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c",
      "vout": 0,
      "amount": 0.00001,
      "satoshis": 1000,
      "height": 626282,
      "confirmations": 1
    }
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "slpAddress": "simpleledger:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwcj8k6q6dv",
  "scriptPubKey": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
  "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG"
}

Ninsight

{
  "utxos": [
    {
      "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
      "vout": 0,
      "amount": 0.000009,
      "satoshis": 900,
      "height": 626283,
      "confirmations": 3
    },
    {
      "txid": "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c",
      "vout": 0,
      "amount": 0.00001,
      "satoshis": 1000,
      "height": 626282,
      "confirmations": 4
    }
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "slpAddress": "simpleledger:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwcj8k6q6dv",
  "scriptPubKey": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
  "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG"
}

Differences

  • None

Address Transactions

http://localhost:3000/v2/address/transactions/bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj

Insight

{
  "pagesTotal": 1,
  "txs": [
    {
      "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
      "version": 2,
      "locktime": 0,
      "vin": [
        {
          "txid": "864ddde69c4bdc55e970549dd0b0821578b2dafff1a3341ddf12ad1f99678158",
          "vout": 0,
          "sequence": 4294967295,
          "n": 0,
          "scriptSig": {
            "hex": "483045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741210399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1",
            "asm": "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c7[ALL|FORKID] 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
          },
          "addr": "1FMqrV48PjkLaJrozi9i1WUMgLshSqnyVW",
          "valueSat": 8296,
          "value": 0.00008296,
          "doubleSpentTxID": null
        }
      ],
      "vout": [
        {
          "value": "0.00000900",
          "n": 0,
          "scriptPubKey": {
            "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
            "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        },
        {
          "value": "0.00007148",
          "n": 1,
          "scriptPubKey": {
            "hex": "76a914e0e71bef832a486a3d53ef0fa2d3a32f6c91016388ac",
            "asm": "OP_DUP OP_HASH160 e0e71bef832a486a3d53ef0fa2d3a32f6c910163 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1MWBDiNwribeCtPhKdZHZUVgrRdsLtthb8"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        }
      ],
      "blockhash": "000000000000000001cee9e0ecba03a54f76307a61465d41bf61ab154fe21d27",
      "blockheight": 626283,
      "confirmations": 1,
      "time": 1584128156,
      "blocktime": 1584128156,
      "valueOut": 0.00008048,
      "size": 226,
      "valueIn": 0.00008296,
      "fees": 0.00000248
    },
    {
      "txid": "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c",
      "version": 2,
      "locktime": 0,
      "vin": [
        {
          "txid": "fa6fd3eb9fd1c90cd14f277a391bf9eb9933ee06d1c274f5bea372466737be3b",
          "vout": 0,
          "sequence": 4294967295,
          "n": 0,
          "scriptSig": {
            "hex": "483045022100d580b471287460b9fc4a07cca8d608a3740085b25d5eadbe9e357fd18e9b0f5802201a74648e02aadf5762f9e51b034addfe2e9d46133f17aff20e029dcb32fa0384412103ca5dca44d6799f67c2eea2803f0e0bb3656ed6f8dd7eebb22a7b637704200f4b",
            "asm": "3045022100d580b471287460b9fc4a07cca8d608a3740085b25d5eadbe9e357fd18e9b0f5802201a74648e02aadf5762f9e51b034addfe2e9d46133f17aff20e029dcb32fa0384[ALL|FORKID] 03ca5dca44d6799f67c2eea2803f0e0bb3656ed6f8dd7eebb22a7b637704200f4b"
          },
          "addr": "16CAeisuZ2DVKu3XMnaAxWTf7BTQbdrAVW",
          "valueSat": 4166,
          "value": 0.00004166,
          "doubleSpentTxID": null
        }
      ],
      "vout": [
        {
          "value": "0.00001000",
          "n": 0,
          "scriptPubKey": {
            "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
            "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        },
        {
          "value": "0.00002918",
          "n": 1,
          "scriptPubKey": {
            "hex": "76a914ae5d1958f7e268d445701bf72e07e1d66471b70b88ac",
            "asm": "OP_DUP OP_HASH160 ae5d1958f7e268d445701bf72e07e1d66471b70b OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1Gtx71fGJMWLj1mJ2MvEmhutYXCh3bUBZY"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        }
      ],
      "blockhash": "000000000000000000fc5b2a0d16ec01fa20b3c65cea995e87777f0d28cbbff6",
      "blockheight": 626282,
      "confirmations": 2,
      "time": 1584128079,
      "blocktime": 1584128079,
      "valueOut": 0.00003918,
      "size": 226,
      "valueIn": 0.00004166,
      "fees": 0.00000248
    }
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "currentPage": 0
}

Ninsight

{
  "pagesTotal": 1,
  "txs": [
    {
      "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
      "version": 2,
      "locktime": 0,
      "vin": [
        {
          "txid": "864ddde69c4bdc55e970549dd0b0821578b2dafff1a3341ddf12ad1f99678158",
          "vout": 0,
          "sequence": 4294967295,
          "n": 0,
          "scriptSig": {
            "hex": "483045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741210399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1",
            "asm": "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
          },
          "addr": "1FMqrV48PjkLaJrozi9i1WUMgLshSqnyVW",
          "valueSat": 8296,
          "value": 0.00008296,
          "doubleSpentTxID": null
        }
      ],
      "vout": [
        {
          "value": "0.00000900",
          "n": 0,
          "scriptPubKey": {
            "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
            "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        },
        {
          "value": "0.00007148",
          "n": 1,
          "scriptPubKey": {
            "hex": "76a914e0e71bef832a486a3d53ef0fa2d3a32f6c91016388ac",
            "asm": "OP_DUP OP_HASH160 e0e71bef832a486a3d53ef0fa2d3a32f6c910163 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1MWBDiNwribeCtPhKdZHZUVgrRdsLtthb8"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        }
      ],
      "blockhash": "000000000000000001cee9e0ecba03a54f76307a61465d41bf61ab154fe21d27",
      "blockheight": 626283,
      "confirmations": 3,
      "time": 1584125743,
      "blocktime": 1584128156,
      "firstSeenTime": null,
      "valueOut": 0.00008048,
      "size": 226,
      "valueIn": 0.00008296,
      "fees": 0.00000248
    },
    {
      "txid": "78591aab3e3b904cfe8e1615228da710c79c7bea27fe585008fa46be9303f11c",
      "version": 2,
      "locktime": 0,
      "vin": [
        {
          "txid": "fa6fd3eb9fd1c90cd14f277a391bf9eb9933ee06d1c274f5bea372466737be3b",
          "vout": 0,
          "sequence": 4294967295,
          "n": 0,
          "scriptSig": {
            "hex": "483045022100d580b471287460b9fc4a07cca8d608a3740085b25d5eadbe9e357fd18e9b0f5802201a74648e02aadf5762f9e51b034addfe2e9d46133f17aff20e029dcb32fa0384412103ca5dca44d6799f67c2eea2803f0e0bb3656ed6f8dd7eebb22a7b637704200f4b",
            "asm": "3045022100d580b471287460b9fc4a07cca8d608a3740085b25d5eadbe9e357fd18e9b0f5802201a74648e02aadf5762f9e51b034addfe2e9d46133f17aff20e029dcb32fa038441 03ca5dca44d6799f67c2eea2803f0e0bb3656ed6f8dd7eebb22a7b637704200f4b"
          },
          "addr": "16CAeisuZ2DVKu3XMnaAxWTf7BTQbdrAVW",
          "valueSat": 4166,
          "value": 0.00004166,
          "doubleSpentTxID": null
        }
      ],
      "vout": [
        {
          "value": "0.00001000",
          "n": 0,
          "scriptPubKey": {
            "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
            "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        },
        {
          "value": "0.00002918",
          "n": 1,
          "scriptPubKey": {
            "hex": "76a914ae5d1958f7e268d445701bf72e07e1d66471b70b88ac",
            "asm": "OP_DUP OP_HASH160 ae5d1958f7e268d445701bf72e07e1d66471b70b OP_EQUALVERIFY OP_CHECKSIG",
            "addresses": [
              "1Gtx71fGJMWLj1mJ2MvEmhutYXCh3bUBZY"
            ],
            "type": "pubkeyhash"
          },
          "spentTxId": null,
          "spentIndex": null,
          "spentHeight": null
        }
      ],
      "blockhash": "000000000000000000fc5b2a0d16ec01fa20b3c65cea995e87777f0d28cbbff6",
      "blockheight": 626282,
      "confirmations": 4,
      "time": 1584125249,
      "blocktime": 1584128079,
      "firstSeenTime": null,
      "valueOut": 0.00003918,
      "size": 226,
      "valueIn": 0.00004166,
      "fees": 0.00000248
    }
  ],
  "legacyAddress": "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ",
  "cashAddress": "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj",
  "currentPage": 0
}

Differences

txs[0].vin[0].scriptSig.asm

  • Insight: txs[0].vin[0].scriptSig.asm = "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c7[ALL|FORKID] 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
  • Ninsight: txs[0].vin[0].scriptSig.asm = "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"

firstSeenTime

  • Insight: Does not exist
  • Ninsight: null

Transaction Details

Uses this transaction from the above address:

  • 7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95

http://localhost:3000/v2/transaction/details/7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95

Insight

{
  "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
  "version": 2,
  "locktime": 0,
  "vin": [
    {
      "txid": "864ddde69c4bdc55e970549dd0b0821578b2dafff1a3341ddf12ad1f99678158",
      "vout": 0,
      "sequence": 4294967295,
      "n": 0,
      "scriptSig": {
        "hex": "483045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741210399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1",
        "asm": "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c7[ALL|FORKID] 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
      },
      "value": 8296,
      "legacyAddress": "1FMqrV48PjkLaJrozi9i1WUMgLshSqnyVW",
      "cashAddress": "bitcoincash:qzwc9hzuqqurvrrellu2x9q657nyjev3dycnj2d4gh"
    }
  ],
  "vout": [
    {
      "value": "0.00000900",
      "n": 0,
      "scriptPubKey": {
        "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
        "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
        "addresses": [
          "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
        ],
        "type": "pubkeyhash",
        "cashAddrs": [
          "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj"
        ]
      },
      "spentTxId": null,
      "spentIndex": null,
      "spentHeight": null
    },
    {
      "value": "0.00007148",
      "n": 1,
      "scriptPubKey": {
        "hex": "76a914e0e71bef832a486a3d53ef0fa2d3a32f6c91016388ac",
        "asm": "OP_DUP OP_HASH160 e0e71bef832a486a3d53ef0fa2d3a32f6c910163 OP_EQUALVERIFY OP_CHECKSIG",
        "addresses": [
          "1MWBDiNwribeCtPhKdZHZUVgrRdsLtthb8"
        ],
        "type": "pubkeyhash",
        "cashAddrs": [
          "bitcoincash:qrswwxl0sv4ys63a20hslgkn5vhkeygpvvvhzvaxj7"
        ]
      },
      "spentTxId": null,
      "spentIndex": null,
      "spentHeight": null
    }
  ],
  "blockhash": "000000000000000001cee9e0ecba03a54f76307a61465d41bf61ab154fe21d27",
  "blockheight": 626283,
  "confirmations": 1,
  "time": 1584128156,
  "blocktime": 1584128156,
  "valueOut": 0.00008048,
  "size": 226,
  "valueIn": 0.00008296,
  "fees": 0.00000248
}

Ninsight

{
  "txid": "7abb4bccde9ff9f3a84ebf7a9817e9f76566d51a0cbac019886ec381f84d3a95",
  "version": 2,
  "locktime": 0,
  "vin": [
    {
      "txid": "864ddde69c4bdc55e970549dd0b0821578b2dafff1a3341ddf12ad1f99678158",
      "vout": 0,
      "sequence": 4294967295,
      "n": 0,
      "scriptSig": {
        "hex": "483045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741210399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1",
        "asm": "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
      },
      "value": 8296,
      "legacyAddress": "1FMqrV48PjkLaJrozi9i1WUMgLshSqnyVW",
      "cashAddress": "bitcoincash:qzwc9hzuqqurvrrellu2x9q657nyjev3dycnj2d4gh"
    }
  ],
  "vout": [
    {
      "value": "0.00000900",
      "n": 0,
      "scriptPubKey": {
        "hex": "76a9140805e24d6fd8c21b6dec0411ec806f4d3ca7c27688ac",
        "asm": "OP_DUP OP_HASH160 0805e24d6fd8c21b6dec0411ec806f4d3ca7c276 OP_EQUALVERIFY OP_CHECKSIG",
        "addresses": [
          "1jRTMypwzwQP1MwiFUSgqiaTx1eGWiokJ"
        ],
        "type": "pubkeyhash",
        "cashAddrs": [
          "bitcoincash:qqyqtcjddlvvyxmdaszprmyqdaxnef7zwc7uap46nj"
        ]
      },
      "spentTxId": null,
      "spentIndex": null,
      "spentHeight": null
    },
    {
      "value": "0.00007148",
      "n": 1,
      "scriptPubKey": {
        "hex": "76a914e0e71bef832a486a3d53ef0fa2d3a32f6c91016388ac",
        "asm": "OP_DUP OP_HASH160 e0e71bef832a486a3d53ef0fa2d3a32f6c910163 OP_EQUALVERIFY OP_CHECKSIG",
        "addresses": [
          "1MWBDiNwribeCtPhKdZHZUVgrRdsLtthb8"
        ],
        "type": "pubkeyhash",
        "cashAddrs": [
          "bitcoincash:qrswwxl0sv4ys63a20hslgkn5vhkeygpvvvhzvaxj7"
        ]
      },
      "spentTxId": null,
      "spentIndex": null,
      "spentHeight": null
    }
  ],
  "blockhash": "000000000000000001cee9e0ecba03a54f76307a61465d41bf61ab154fe21d27",
  "blockheight": 626283,
  "confirmations": 3,
  "time": 1584125743,
  "blocktime": 1584128156,
  "firstSeenTime": 1584128086,
  "valueOut": 0.00008048,
  "size": 226,
  "valueIn": 0.00008296,
  "fees": 0.00000248
}

Differences

txs[0].vin[0].scriptSig.asm

  • Insight: txs[0].vin[0].scriptSig.asm = "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c7[ALL|FORKID] 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"
  • Ninsight: txs[0].vin[0].scriptSig.asm = "3045022100c5809247e9dd24bc651d16f90c2825d7af8a669c69a39b895693251bdd34b5690220514de473417d5b0253891364e8429a48dc3565e971fb6692a67205aaaecab6c741 0399e33bb893ffb1f8ad1437f615b1ba69d7e6166562a5026526fa26b5e73c78f1"

firstSeenTime

  • Insight: Does not exist
  • Ninsight: 1584128086
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment