2
1
A few years ago I mined a couple of alt-coins. Now I have approximately 5 wallets which are named in non-suggestive way: wallet_01.dat, wallet_02.dat, ..., wallet_05.dat. Each of them has reasonable amount of coins, also I have no idea how much exactly and what coin correspond to each wallet. Now I would like to restore some order by checking what do I have and how much.
Is there a way for me to figure this out? I do not remember exactly what these alt-coins are but have approximate ideas (probably can try to remember and select 30 potential candidates).
With this, I clearly can try each of the alt-coin client, wait for sync (may be do not even need this) and try to open each of the wallet. This will be very slow and because I am not 100% sure I will be lucky with my 30 crypto-coin guesses might take even longer.
So, is there a way to find a corresponding alt-coin for a wallet. Even maybe finding how much coins are in the wallet without downloading the client?
Thank you for looking into my question. When I run
strings wallet.dat | grep purposeI get no output at all. The same forstrings wallet.dat | grep tx. – wallet-hoarder – 2017-07-26T06:42:36.400@wallet-hoarder Can you try
nameorckeyorkey? Doesstrings wallet.datprint anything at all? – Nick ODell – 2017-07-26T17:50:58.923strings wallet.datreturns many many strings,| grep namesreturns something likename"IdOs4Users...(changed because I do not know whether it is important). For some wallets it has a bunch of such names.ckeyreturns nothing.keyreturns many lines, majority look likekey!– wallet-hoarder – 2017-07-27T05:01:22.990@wallet-hoarder That's a good sign. Part after name is an address. Also, if key shows up, but not ckey, then the wallet is not encrypted. – Nick ODell – 2017-07-27T05:07:11.300
It is highly likely that the wallets are not encrypted because they were in a truecrypt container. Thanks to you I found that the first character in the name can tell me the currency. In one of the wallets the first character is Q. I found this database for altcoin prefixes. The integer value of Q is 81, and it tells me that it is PotCoin (I am very sure I have never mined this). Q also suggest quarkcoin which I remember mining. Do you know how to find the currency from this character?
– wallet-hoarder – 2017-07-27T05:22:42.400@wallet-hoarder My best idea is to try both and see if one of them works. – Nick ODell – 2017-07-27T17:23:35.293