Post
Topic
Board Development & Technical Discussion
Merits 1 from 1 user
Re: ⌛️How do I create a Dump file of the blockchain.
by
pooya87
on 12/11/2022, 05:44:40 UTC
⭐ Merited by ETFbitcoin (1)
I need all Blockchain data in text format is basically what I am saying and then I need to have that shown preferably in a gui program in which I can use Ctrl F to find specific transactions.
That is basically what block explorers do, they create a database from the blockchain data and index it in a way that you could search it. There are open source block explorer projects on github which you can find with a quick search.

This functionality seems to be only available in the CLI, so open a terminal and type bitcoin-cli dumpwallet <wallet name> . The output is going to be in pseudo-CSV format.
That would export the wallet file information not the blockchain data.