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
-
Quick Installation
# 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.sh
-
Manual Installation
# 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: add a symlink "q1wallet" to call the menu
If you already have WSL ready, simply launch it in your terminal with wsl
and then follow the Linux Installation method above.
-
Enable WSL
- Open PowerShell as Administrator
- Run:
wsl --install
- Restart your computer
-
Setup Ubuntu
- Open "Ubuntu" from Start Menu
- Create username and password when prompted
- Update system:
sudo apt update && sudo apt upgrade -y
-
Install Q1 Wallet
- Follow the Linux Installation method above
- Launch the menu with:
cd ~/q1wallet && ./menu.sh
or simplyq1wallet
The script is currently compatible with:
- Linux or Windows WSL
- x86_64 (amd64)
- aarch64 (arm64)
Requirements:
- Bash shell
- curl, zip
- Internet connection (for updates and qclient download)
- The script automatically downloads the appropriate qclient version for your system
- All wallets are stored locally in the
wallets
subdirectory - Multiple wallets can be created and managed
- Optional encryption for wallet storage is available via zip/unzip of the "wallets" folder
- Regular updates are provided through the GitHub repository
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:
-
Executable with Embedded Script
- Package the script into a standalone executable using tools like
pyinstaller
(Python). - Users can launch the application by double-clicking, simplifying the experience.
- Package the script into a standalone executable using tools like
-
Enhanced Terminal Interface
- Add colored output for better readability (e.g.,
colorama
in Python). - Use libraries like Prompt Toolkit to enable richer input handling (e.g., autocomplete, dropdowns).
- Add colored output for better readability (e.g.,
-
Bundled Terminal Emulator
- Distribute the wallet with a lightweight terminal emulator (e.g., Mintty, ConEmu).
- Ensures a consistent user experience without requiring external terminal configurations.
-
Minimal TUI (Text User Interface)
- Use libraries like
dialog
(Bash) ornpyscreen
(Python) to create interactive menus navigable with arrow keys.
- Use libraries like
These enhancements aim to maintain the lightweight and portable nature of the script while offering a more polished and user-friendly experience. See this ChatGPT discussion for more details.
CC - Attribution-NonCommercial-ShareAlike 4.0 International