Tool to recover seeds stored in [Frame](https://frame.sh/)
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
Bingen Eguzkitza ca178511c7 First commit 1 个月前
HotSigner First commit 1 个月前
SeedSigner First commit 1 个月前
.gitignore First commit 1 个月前
README.org First commit 1 个月前
main.js First commit 1 个月前
package-lock.json First commit 1 个月前
package.json First commit 1 个月前

README.org

Frame decryption tool

Tool to recover seeds stored in [Frame](https://frame.sh/)

Instructions

Get the encrypted seed phrase (or key) from \~/.config/frame/signers/*.json file. Get the value encryptedSeed (or encryptedKeys):


jq '.encryptedSeed ~/.config/frame/signers/1234.json

Create an .env file with:


export PASSWORD='password-used-in-frame'
export ENCRYPTED='the-value-obtained-above'
export NUM_KEYS=num-of-keys-and-addresses-you-want-to-derive

Run:


npm install
npm start

Note that you will get the hex string seed value obtained from bip39.mnemonicToSeed, which is irreversible. (I.e., it is impossible to recover the original mnemonic phrase). But you can recover private keys and private addresses.