https://github.com/simonbolivarpy/exodus-vault-decode
the decode seed.seco file from Exodus crypto wallet via password and extract mnemonic phrase (seed)
https://github.com/simonbolivarpy/exodus-vault-decode
Last synced: over 1 year ago
JSON representation
the decode seed.seco file from Exodus crypto wallet via password and extract mnemonic phrase (seed)
- Host: GitHub
- URL: https://github.com/simonbolivarpy/exodus-vault-decode
- Owner: SimonBolivarPy
- License: mit
- Created: 2025-03-21T12:28:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-21T12:29:01.000Z (over 1 year ago)
- Last Synced: 2025-03-21T13:38:55.585Z (over 1 year ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExodusDecode
[](https://nodesource.com/products/nsolid)
     
The decode seed.seco file from Exodus crypto wallet via password and extract mnemonic phrase (seed)
## Youtube:
[](https://www.youtube.com/watch?v=l2u-0WFDsUY&pp=0gcJCb0Ag7Wk3p_U "How to decode vault data?")
## Installation
Python requires [Python.org](https://www.python.org/) v3,7+ to run.
Install the dependencies and devDependencies and start the server.
```sh
python -m pip install pip
python -m pip install --upgrade pip
pip install pycryptodome
pip install Mnemonic
```
## Using
```Python
from exdsdecode import ExodusWalletReader
# default password for .seco
Password = 'SSKLBMLuLo0U3JjyRtlGyaHAVNbCMH0zho2mrkiRcTo='
w1 = ExodusWalletReader('wallets\\seed.seco')
data = w1.decrypt(Password)
print(ExodusWalletReader.extract_mnemonic(data))
```
## License
MIT