Getting information about transactions and addresses from each block

How I can get transactions and addresses information from litecoin core client directory ~\Litecoin\blocks and put it to my python3.7 program(windows10)?

if you want raw block info…then you should get it via RPC client by connecting to litecoind when you have it running…
use the getblockinfo (“block-id”) command in console or via litecoin-cli over rpc…

1 Like

You can use only blk file, if possible and you can use the simple parser of data, this is an example python2.

I have developed the parser of file blk for bitcoin, with this I have build the analisis on type of script.

This is the reference of the reddit post