0

I've just downloaded the Bitcoin Core for Windows.

I can see several .dat file. What can I use to open them. i.e. Is there a way to view them in plaintext?

Also, which file is the blockchain file?

Thanks!

Michael Folkson
  • 15,313
  • 3
  • 17
  • 53
Daniel Gee
  • 163
  • 4

2 Answers2

2

The .dat files are opened by Bitcoin Core, they are not supposed to be opened in plaintext. The blockchain will be in the blocks/ subdirectory. You can see a list of the files bitcoin core uses here: https://github.com/bitcoin/bitcoin/blob/master/doc/files.md

meshcollider
  • 11,815
  • 4
  • 25
  • 53
-1

These files are in binary format, so not intended for a human reader. To have a look at the content, get a "hex reader" program, google for that.

Do you want to get the private keys to your Bitcoin adresses? If so, you will use the "debug window" in Bitcoin Core. See this answer for how to do that: https://bitcoin.stackexchange.com/a/5933/63522

nulldev
  • 110
  • 1
  • 1
  • 9