I have my seed phrase written down. All words that I have written down are BIP39 words. I migrated from a Adalite.io to Nami wallet back in January and had only created a wallet one time. I have the other seed phrase written down on a different sheet for adalite wallet so its not the common issue of having the wrong seed/wallet pair.
When I enter the seed phrase written down, I don’t think the checksum requirement is being met because it doesn’t let me proceed to the next stage in Nami and gives me errors when trying in ccVault and Adalite.
I have tried using a combination of functions in PySeedRecover and have been unsuccessful thus far.
Rewinding for a bit - I was trying to import my Nami wallet onto a new device. Somewhere in the process, my activity on the new device wiped my wallet from existing device (had no issue transacting before). I had Chrome (including extensions) synced between both devices so I think this was the cause. I’m wondering if I could roll back my computer to a previous date if the seed phrase data would somehow still be stored or if it stored locally somewhere. I believe there is a way to extract seed phrase locally for Metamask but have not seen any guides for Cardano wallet.
I know no wallet app that lets you extract the seed phrase after the fact. Some let you export the secrets in some other way (Daedalus has a secrets file that can be imported to a new Daedalus instance, ccvault has a JSON export, adalite also, but I don’t know if it is compatible). Won’t help anyway, as long as that Nami instance cannot be restored.
I can’t even begin to thank you enough for writing this script and being so helpful.
After several days, I have been able to regain access to my wallet!!! I wrote down the word “lion” instead of “iron”. I was only able to figure this out thanks to your script. I ran 24 lines of code, each one using the -m command and looking for valid seeds with a replaced word in each position. I directed all prompts to one text file using “>>”. After executing the code, I cross referenced the stake addresses and about fell out of my chair when my stake address appeared on the list with the correct seed phrase. Totally in shock at the moment.
hey bro thanks for your great recommendations, we tried the whole ways and we couldn’t find an easy way to look out all wallets balances; i have an idea about some API or something else like AdaLite website to check all made up wallets by the CARDANO network!
is there any way to connect that seedrecover to blockchain network and grab the balance of the wallets then sort them out in an excel or text file?
if theres a documentation to make some, please let we know about it and we will try to make one and fork this on git hub.
thanks again SIR.
Hello mate,
I desperatly trying to work out the same issue you’ve got with your wallet, but I’m not able to understand what is the entire code I have to apply. I’m not into coding at all and the only thing I got is Python 3 installed on my PC.
Could you give show me please the entire code you used?
Thank you very much
If you have further questions, feel free to ask away. But please make sure to not give us any information about your seed phrase, not in screenshots, not in copy and paste!
I have used your tool and must admit it is very great and useful tool. The case I tried was specifically with a seed of 15 words and I left out the last word.
The result was more than 10k cases and it took about 15-20 minutes to complete (The device I use is just a laptop for regular users)
And @HeptaSean , I remember that in the documentation you said the script incorporates KOIOS API calls to check on-chain about the viability of the stakekey? I wonder if there is a possibility of a miss during script execution ?
It’s worth noting that my test case is very simple because I only leave out the last 1 word and the 14 known words are sorted in their exact order.
So advice for everyone, always store your secret phrase carefully!
But that will try to insert the missing words in every possible location starting from the beginning. That will take ages. If you know that the words are missing at specific positions, you can explicitly give the positions with, for example, -m 13 14 15 to give the last three positions:
Three missing words still is quite a lot, will take a very long time, and give a lot of possible results. Hopefully, you have the stake address of the wallet you are trying to recover. Then, you can give that explicitly with the -a parameter to search that and only get an output if the seed phrase for that address is found:
As said above: It searches missing words in all possible positions by default. If you know in which position the word is missing, giving the position with -m is much faster.
This is only done if the parameter -k is given. And it really should be a last resort because of the time it takes to do the queries and because of the load on Koios. Giving one or several stake addresses to search for with -a is much better.