| Crates.io | ryzan |
| lib.rs | ryzan |
| version | 1.3.0 |
| created_at | 2025-08-02 13:14:21.221838+00 |
| updated_at | 2025-08-10 09:06:38.528424+00 |
| description | Secure Solana wallet with 2FA protection |
| homepage | https://github.com/simplysabir/ryzan |
| repository | https://github.com/simplysabir/ryzan |
| max_upload_size | |
| id | 1778813 |
| size | 373,029 |
Secure Solana wallet with 2FA protection
██████╗ ██╗ ██╗███████╗ █████╗ ███╗ ██╗
██╔══██╗╚██╗ ██╔╝╚══███╔╝██╔══██╗████╗ ██║
██████╔╝ ╚████╔╝ ███╔╝ ███████║██╔██╗ ██║
██╔══██╗ ╚██╔╝ ███╔╝ ██╔══██║██║╚██╗██║
██║ ██║ ██║ ███████╗██║ ██║██║ ╚████║
╚═╝ ╚═╝ ╚═╝ ╚══════╝╚═╝ ╚═╝╚═╝ ╚═══╝
A CLI wallet for Solana with built-in security features including mandatory TOTP 2FA, encrypted storage, and secure transaction handling.
Option 1: Cargo Install (Recommended)
cargo install ryzan
Option 2: Install Script
curl -sSL https://raw.githubusercontent.com/simplysabir/ryzan/main/install.sh | bash
Option 3: Download from Releases Go to Releases and download for your platform.
Option 4: Build from Source
git clone https://github.com/simplysabir/ryzan
cd ryzan
cargo build --release
# Create wallet
ryzan create --name main
# Unlock wallet
ryzan unlock --name main --totp 123456
# Get receive address + QR code
ryzan receive
# Send SOL
ryzan send <address> 0.1 --totp 123456
# Check balance
ryzan portfolio
| Command | Usage |
|---|---|
create |
Create new wallet |
unlock |
Unlock wallet with TOTP |
receive |
Show address + QR code |
send |
Send SOL to address |
portfolio |
Show balance |
backup |
Export encrypted backup |
recover |
Restore from backup |
Build and run in development mode
docker compose up --build
Access the container shell
docker compose exec ryzan bash
Run specific commands
docker compose exec ryzan ryzan create --name test
Use the convenience script
./docker-run.sh build
./docker-run.sh run --help
./docker-run.sh start
For active development with live code changes:
# Use development compose file
docker compose -f docker-compose.dev.yml up --build
# This mounts your source code and enables live development
MIT - Use at your own risk. Always test with small amounts first.