Blockchain parser for transaction level details

2

I'm looking for transaction level data for both inputs and outputs. The znort block parser returns the type of data I'm looking for, however it doesn't seem to detect multisig transactions. Has anyone updated the code?

There's another parser written by John Ratcliff which properly detects the multisig transactions, however this does not return transaction level data. Has anyone modified this code to return individual inputs and outputs?

Are there any other parsers available to return transaction level data for inputs and outputs?

Thanks

mrp

Posted 2015-03-19T05:34:58.617

Reputation: 195

Answers

1

I guess you're looking for a blockchain explorer. Insight, by BitPay, works pretty well and is open-source: https://github.com/bitpay/insight

Luca Matteis

Posted 2015-03-19T05:34:58.617

Reputation: 4 784

1Is Insight used only for web purposes? I'm looking for something that will allow me to do data analysis, primarily something that I can read into R, Python, or SQL. Can I get that sort of information from Insight?mrp 2015-03-19T21:09:59.407

it has a json http api so you can easily interface with it using any languageLuca Matteis 2015-03-20T12:35:17.837

Gotcha. My problem with Insight is that I'll be working on a server, and I don't have permission to install Node.

Assuming I could install it, any idea of how long would it take to download all the data? – mrp 2015-03-23T21:40:51.780