Q1 Wallet is a user-friendly menu interface for managing QUIL tokens using Quilibrium's qclient. It provides an easy-to-use command-line interface for common token operations without needing to remember complex commands.
This is unofficial community software provided as-is. Always verify transactions carefully and keep your wallet information secure. The current version is still in BETA, use carefully and report any issues.
Q1 Wallet is a bash script that wraps around the Quilibrium qclient, providing a menu-driven interface for:
- Checking balances and addresses
- Managing multiple wallets
- Handling token transactions
- Coin operations (merging, splitting)
- Wallet encryption/decryption
The menu includes the following options:
-
Basic Operations
- Check balance / address
- Create transactions
- View individual coins
- Merge coins
- Split coins
-
Wallet Management
- Create new wallets
- Switch between wallets
- Encrypt/decrypt wallets
- Delete wallets
-
Security and Updates
- Security settings
- Check for updates
- Help documentation
Run this snippet in your terminal:
# This will install in the folder ~/q1wallet
cd && \
mkdir -p ~/q1wallet && \
curl -sSL "https://raw.githubusercontent.com/lamat1111/Q1-Wallet/main/install.sh" -o ~/q1wallet/install.sh && \
chmod +x ~/q1wallet/install.sh && \
~/q1wallet/install.shAfter creating your wallet, it’s highly recommended to back up the two key files located in: $HOME/q1wallet/wallets/wallet_name (where "wallet_name" is the name you chose for your wallet).
Store these files securely on an encrypted USB drive and avoid uploading them online.
Without a backup, a hardware failure on your PC could result in the permanent loss of access to your tokens. Protect your keys to ensure your assets remain safe.
To enhance security, use the "Encrypt Wallet" option in the menu when you're not actively using your wallet(s). This feature stores your wallet(s) files in a .zip archive protected by a password of your choice.
This extra step is crucial in case a hacker gains access to your files, as it helps prevent unauthorized access to your wallet keys.
# Create directory
mkdir ~/q1wallet && cd ~/q1wallet
# Download the script
curl -O https://raw.githubusercontent.com/lamat1111/Q1-Wallet/main/menu.sh
chmod +x menu.sh
# Run the wallet
./menu.sh
# Optional: set up a quick command
# Add this line to your shell profile file (e.g., ~/.bashrc for Bash on Linux, ~/.bash_profile for Bash on macOS, or ~/.zprofile for Zsh):
# echo "alias q1wallet='$HOME/q1wallet/menu.sh'" >> ~/.bashrc # Adjust the file based on your shell
# Then run 'source ~/.bashrc' (or the appropriate file) or restart your terminal to use the 'q1wallet' commandIf you already have WSL ready, simply launch it in your terminal with wsl and then follow the Linux Quick Installation method above.
- Open PowerShell as Administrator
- Run:
wsl --install - Restart your computer
- Open "Ubuntu" from Start Menu
- Create username and password when prompted
- Update system:
sudo apt update && sudo apt upgrade -y
- Follow the "Quick Installation" method above.
- Launch the menu with:
or simply:
cd ~/q1wallet && ./menu.sh
q1wallet
The script is currently compatible with:
x86_64 (amd64)aarch64 (arm64)
x86_64 (amd64)arm64 (Apple Silicon)
- Bash shell
curl,zip,unzip(automatically installed on macOS if missing)- Internet connection (for updates and qclient download)
- The script automatically downloads the appropriate qclient version for your system (Linux or macOS).
- On macOS, the quick command uses an alias in your shell profile (e.g.,
.zprofile) instead of a symlink. - All wallets are stored locally in the
walletssubdirectory. - Multiple wallets can be created and managed.
- Optional encryption for wallet storage is available via zip/unzip of the
walletsfolder. - Regular updates are provided through the GitHub repository.
Q1 Wallet is a standalone script that operates independently of a node installation. However, there are a few considerations depending on your setup:
- If you do not have a node installed, the script will work seamlessly without requiring one.
- If you do have a node installed:
- Q1 Wallet will not recognize your current node keys because they are stored in a different location.
- To use your node keys with Q1 Wallet, you need to copy them manually into the following folder:
where
$HOME/q1wallet/wallets/wallet_namewallet_nameis any name you want to give to your wallet.
This repository contains a terminal-based menu script for creating and managing Quilibrium wallets. Below are some ideas to further improve usability, bridging the gap between a traditional CLI and a full GUI application:
- Package the script into a standalone executable using tools like pyinstaller (Python).
- Users can launch the application by double-clicking, simplifying the experience.
- Add colored output for better readability (e.g.,
coloramain Python). - Use libraries like Prompt Toolkit to enable richer input handling (e.g., autocomplete, dropdowns).
- Distribute the wallet with a lightweight terminal emulator (e.g., Mintty, ConEmu).
- Ensures a consistent user experience without requiring external terminal configurations.
- Use libraries like dialog (Bash) or npyscreen (Python) to create interactive menus navigable with arrow keys.
These enhancements aim to maintain the lightweight and portable nature of the script while offering a more polished and user-friendly experience.
GNU AFFERO GENERAL PUBLIC LICENSE
