Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vidorge/solflare-decrypt
Tool for decrypting solflare.com keystores
https://github.com/vidorge/solflare-decrypt
Last synced: about 1 month ago
JSON representation
Tool for decrypting solflare.com keystores
- Host: GitHub
- URL: https://github.com/vidorge/solflare-decrypt
- Owner: vidorge
- Created: 2020-08-10T23:50:49.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-20T18:11:28.000Z (about 4 years ago)
- Last Synced: 2024-07-31T08:16:23.684Z (4 months ago)
- Language: JavaScript
- Size: 22.5 KB
- Stars: 17
- Watchers: 2
- Forks: 10
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome - vidorge/solflare-decrypt - Tool for decrypting solflare.com keystores (JavaScript)
README
# solflare-decrypt
Tool for decrypting solflare.com keystores into native Solana keystore format and encrypting native Solana keystores to SolFlare compatible ones.
## Installation
```bash
npm install
```## Help
```bash
node index.js help# Usage:
# node index.js raw-to-solflare [raw-key-input-file] [output-keystore-file] [output-keystore-password]
# node index.js solflare-to-raw [input-keystore-file] [input-keystore-password] [raw-key-output-file]
```## Raw Solana Keystore to SolFlare Keystore
```bash
node index.js raw-to-solflare ~/path-to-solana-keystore.json output-solflare-keystore.json "keystore password"
```## SolFlare Keystore to Raw Solana Keystore
```bash
node index.js solflare-to-raw ~/path-to-solflare-keystore.json "solflare keystore password" output-solana-keystore.json
```## Mnemonic Phrase to SolFlare Keystore
Coming soon...