Why are you trying to combine all wallet addresses anyway? Each wallet contains hundreds of addresses, mostly empty, stored in its file. Wouldn't it make more sense to sweep the coins from each wallet to another one (after claiming any forks first see LoyceV reply below)?
Why? I'm trying the check the balances of each one, and extract the remaining coins - if any.
Newer versions of Bitcoin Core enable you to open multiple wallets at once...
Just put copies of all your wallet.dat files into the Bitcoin Core datadir... you'll obviously need to give them all unique names. Then start Bitcoin Core and use the "File -> Open Wallet" command on each wallet.dat.
It'll need to rescan each and every wallet as you do this, so that could take a while if the wallets haven't been used in a while. You could also potentially use the
-wallet commandline option to specify them all at once on startup.
Once you've scanned them all, you'll easily be able to see which ones have funds and which ones dont... and then you can worry about consolidating the funds etc.
I did not know that, thanks for the answer!
What about dumping all his wallets addresses and then importing them in batches into a watch-only wallet.
This is much faster:
The most likely use is to check a long list of Bitcoin addresses for a remaining balance.
On Linux, use this to find matching addresses:
comm -12 Bitcoin_addresses_LATEST.txt <(cat mylist.txt | sort | uniq)
- Bitcoin_addresses_LATEST.txt: the extracted latest version downloaded from addresses.loyce.club.
- mylist.txt: your own list of addresses, one address per line.
This takes only seconds to check millions of addresses. If your text file has Microsoft formatting, you may need to use this instead:
comm -12 Bitcoin_addresses_LATEST.txt <(cat mylist.txt | fromdos | sort | uniq)
THANKS!! That was the answer i was looking for, i think! Now it's just the matter of exporting all addresses, but that should be pretty easy - i think!
they all was POSSIBLE used last 6-8 years go...
Any chance some of them are altcoin wallets?
Checking each wallet MANUALLY with bitcoind seems like a really hard way to go, even if i try...
How many wallets are you talking about? Hundreds?
There wasn't any altcoins back when i was playing with bitcoind, or yeah - well, maybe namecoin i guess. But nothing besides that afaik.
Thanks all for your answers, i'll go ahead and try to extract the addresses in full and run them again that list, i think that will be the fastest way.
Cheerio!