https://github.com/aviksaikat/recover-solana-wallet-private-key
Recover Solana Wallet Private Key
https://github.com/aviksaikat/recover-solana-wallet-private-key
cargo rust solana solana-program solana-token wallet-recovery-tools walletrecovery
Last synced: 2 months ago
JSON representation
Recover Solana Wallet Private Key
- Host: GitHub
- URL: https://github.com/aviksaikat/recover-solana-wallet-private-key
- Owner: Aviksaikat
- Created: 2024-10-09T08:18:16.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-10-09T08:28:44.000Z (8 months ago)
- Last Synced: 2025-03-16T16:59:24.453Z (3 months ago)
- Topics: cargo, rust, solana, solana-program, solana-token, wallet-recovery-tools, walletrecovery
- Language: Rust
- Homepage:
- Size: 107 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Recover Solana Wallet Private Key
If you're as dumb as me, you probably need this program.## Overview
Recover the private key from a partial key and address.
## N.B.
You need a partial key and address to recover the complete private key.

## Usage
Make the following Changes
```rust
// main.rsfn main() {
// replace the address with your own address
let target_address: &str = "8xFxixdETqwW4kQiUzS4moRDJqRhFgwPbKMWCPKHtP9N";// Put indexes of the missing values. Remember nerds start counting from 0 and not 1 ;)
let huh_index = 5;
let haha_index = 48;
[...]
}
```Run
```shell
cargo run
```