Where can I find the explanation of each field of the result returned by the api of blockchain.info?

1

Such as in this result: https://blockchain.info/rawtx/6b1c57d98a557b5f578c02f6c386ef049df5890ebddd01d286bf345f47c5cecc

I don't know what ex. the fields "tx_index", "type", "n" mean.

Aqqqq

Posted 2017-03-03T20:33:13.150

Reputation: 277

Answers

1

You can find the documentation for that call, such as it is, here. It's not very helpful.

I can give you a few tips, though.

  • n is the vout of the input. A vout plus a txid unambiguously specify a transaction output, and are collectively known as an outpoint. More.
  • tx_index is a field used by blockchain.info, and has no meaning outside of blockchain.info's api.
  • No idea what type means. Looking at a few transactions at random, it always seems to be zero.

Nick ODell

Posted 2017-03-03T20:33:13.150

Reputation: 26 536