0
0
I have multiple decrypted wallets in the same folder. How can I find out which wallet belongs to which cryptocoin? All wallets are named wallet_x.dat, so the name gives no hint.
UPDATE: I have no access to the addresses within the wallet, because I can't import them, because I don't know which client I would need.
my answer is very similar to nate's: use https://gist.github.com/nlitsme/b3102191c2dc14c587e7, and look for 'name' in the output
– Willem Hengeveld – 2014-07-10T10:21:01.743@WillemHengeveld I'm not familiar with reading python code. Can you explain the theory behind this code? – user2827309 – 2014-07-10T11:46:19.483
@NateEldredge I would like to have an answer, that explains me where exactly I can find the indicator, not just which tool to use to find it. – user2827309 – 2014-07-10T11:48:00.630
what the python code does: read the berkeley db records, and print the records in readable form. And btw, you don't need to be able to read python in order to run it, just type:
python dumpwallet– Willem Hengeveld – 2014-07-10T12:05:58.500an even simpler method would be to load wallet.dat in any hexeditor or some other tool to view binaries, and look for the string 'name', directly followed by something which looks like an address. I think even the unix commandline tool 'strings' would be sufficient. – Willem Hengeveld – 2014-07-10T12:07:58.407
@WillemHengeveld The script is definitely doing what I wanted. Thanks a lot. But I prefer to understand how it works, so I can rewrite it in a language that I understand, because I want to make it fit my needs. – user2827309 – 2014-07-10T13:12:13.550