Thanks to visit codestin.com
Credit goes to github.com

Skip to content

A lightweight encryption tool to safely store and manage your XRP wallet seeds, built with protection against malware in mind.

Notifications You must be signed in to change notification settings

lilmond/XRP-Seed-Manager

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Β 

History

5 Commits
Β 
Β 
Β 
Β 

Repository files navigation

πŸ” XRP Seed Manager

A lightweight encryption tool to safely store and manage your XRP wallet seeds, built with protection against malware in mind.

image


πŸ“¦ Requirements

Install the only dependency using:

pip install pycryptodome==3.22.0

πŸ”§ Integration Example

Easily integrate it into your project:

from getpass import getpass
import xrp_seed_manager

password = getpass("Password: ")

seed_manager = xrp_seed_manager.XRPSeedManager()
try:
    seeds = seed_manager.decrypt_seeds(
        seed_file=".xrp_seeds/n_seeds.xrpseed",
        password=password
    )
except Exception:
    print("Wrong password")
    exit()

print(seeds)

⚠️ Warning

This tool does not store backups.

Keep copies of your encrypted seed file in a safe location.

I am not responsible for any data loss.

About

A lightweight encryption tool to safely store and manage your XRP wallet seeds, built with protection against malware in mind.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages