2025-11-24 09:27:54 +01:00
# Pallectrum - Lightweight Palladium Wallet
2022-06-09 17:23:28 +02:00
```
Licence: MIT Licence
2025-12-07 12:08:52 +01:00
Version: 0.9.0
2025-11-24 09:27:54 +01:00
Maintainer: Davide Grilli
2025-01-10 13:16:04 +00:00
Language: Python (>= 3.10)
2025-11-24 09:27:54 +01:00
Homepage: https://github.com/palladium-coin/pallectrum
2022-06-09 17:23:28 +02:00
```
2025-11-24 09:27:54 +01:00
[](LICENCE)
[](https://github.com/spesmilo/electrum)
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
## About
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
Pallectrum is a lightweight Palladium wallet based on [Electrum ](https://electrum.org/ ), the popular Bitcoin wallet. It offers the same ease of use, security features, and extensibility that Electrum is known for, but adapted for the Palladium blockchain.
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
### Key Features
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
- **Instant on**: Your wallet is ready to use immediately - no blockchain download required
- **Secure**: Your private keys are encrypted and never leave your computer
- **Forgiving**: Your funds can be recovered from a secret seed phrase
- **Cold Storage**: Keep your private keys offline and transact using a watching-only wallet
- **Multi-signature support**: Split the permission to spend your coins between several wallets
- **Hardware wallet support**: Compatible with popular hardware wallets (Trezor, Ledger, etc.)
- **Lightning Network**: Fast and low-cost payments (experimental)
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
### Based on Electrum
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
Pallectrum is a fork of Electrum v4.6.2, adapted to work with the Palladium blockchain. For the original Electrum documentation, see [README-ELECTRUM.md ](README-ELECTRUM.md ).
2024-10-07 17:04:14 +00:00
2025-11-24 09:27:54 +01:00
**Credits**: Pallectrum is based on [Electrum ](https://github.com/spesmilo/electrum ) by Thomas Voegtlin and contributors. We are grateful for their excellent work.
2022-06-09 17:23:28 +02:00
2024-10-07 17:04:14 +00:00
2025-11-24 09:27:54 +01:00
## Getting Started
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
### Installation
2024-10-07 17:04:14 +00:00
2025-11-24 09:27:54 +01:00
The easiest way to run Pallectrum is to download the pre-built binaries:
2022-06-09 17:23:28 +02:00
2025-12-07 12:08:52 +01:00
- **Windows**: Two versions available:
- `pallectrum-x.x.x-portable.exe` - **Recommended for USB drives ** . Saves all data (wallets, configuration) in the same directory as the executable. Perfect for portable installations.
- `pallectrum-x.x.x-setup.exe` - Standalone installer. Installs to Program Files and saves data in `%APPDATA%\Pallectrum` .
2025-11-24 09:27:54 +01:00
- **Linux**: Download `pallectrum-x.x.x-x86_64.AppImage`
- **Android**: Download `pallectrum-x.x.x.apk`
2024-10-07 17:04:14 +00:00
2025-11-24 09:27:54 +01:00
### Running from Source
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
If you want to run Pallectrum from source, you'll need Python 3.10 or higher.
2022-06-09 17:23:28 +02:00
2025-11-26 17:25:40 +01:00
#### Windows
**Prerequisites:**
- Python 3.10+ installed from [python.org ](https://www.python.org/downloads/ )
**Setup with Virtual Environment:**
```powershell
# Clone repository
git clone https://github.com/palladium-coin/pallectrum.git
cd pallectrum
# Create and activate virtual environment
python -m venv env
env\Scripts\Activate.ps1
# Upgrade pip and install dependencies
python -m pip install --upgrade pip
pip install -e ".[gui,crypto]"
# Copy libsecp256k1 DLL (if needed)
copy libsecp256k1*.dll env\Lib\site-packages\electrum_ecc\
# Run with Qt GUI
python run_electrum
```
##### Optional: QML GUI on Windows (simulates Android interface)
```powershell
pip install ".[qml_gui]"
python run_electrum gui -g qml
```
#### Linux (Ubuntu/Debian)
**Install Prerequisites:**
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
```bash
2025-11-26 17:25:40 +01:00
# System packages
sudo apt update
sudo apt install -y python3-venv python3-pip build-essential python3-dev
sudo apt install -y libffi-dev libssl-dev libsecp256k1-dev
```
**Setup with Virtual Environment:**
```bash
# Clone repository
git clone https://github.com/palladium-coin/pallectrum.git
cd pallectrum
# Create and activate virtual environment
python3 -m venv env
source env/bin/activate
# Upgrade pip and install dependencies
python3 -m pip install --upgrade pip
pip install -e ".[gui,crypto]"
# Run with Qt GUI
python run_electrum
```
##### Optional: QML GUI on Linux (simulates Android interface)
```bash
pip install ".[qml_gui]"
python run_electrum gui -g qml
2022-06-09 17:23:28 +02:00
```
2025-11-24 09:27:54 +01:00
For detailed installation instructions, including dependencies and platform-specific notes, see the [original Electrum documentation ](README-ELECTRUM.md#getting-started ).
2022-06-09 17:23:28 +02:00
2025-12-06 00:36:18 +01:00
## User Guide
For a comprehensive guide on how to use Pallectrum, including wallet creation, sending/receiving transactions, backup procedures, and advanced features, please refer to the * * [User Guide ](user-guide.md )**.
The guide covers:
- Creating and restoring wallets
- Sending and receiving Palladium
- Wallet backup and security best practices
- Advanced features (multi-signature, hardware wallets, etc.)
- Troubleshooting common issues
2025-11-24 09:27:54 +01:00
## Building Binaries
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
Pallectrum includes Docker-based build systems for reproducible builds:
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
- **Windows**: See [contrib/build-wine/README.md ](contrib/build-wine/README.md )
- **Linux (AppImage)**: See [contrib/build-linux/appimage/README.md ](contrib/build-linux/appimage/README.md )
- **Android**: See [contrib/android/Readme.md ](contrib/android/Readme.md )
2022-06-09 17:40:57 +02:00
2025-11-24 09:27:54 +01:00
### Quick Build (Windows with Docker)
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
```bash
$ cd contrib/build-wine
$ ./build.sh
# Output: dist/pallectrum-<version>-setup.exe
2022-06-09 17:23:28 +02:00
```
2025-11-24 09:27:54 +01:00
## Configuration
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
Pallectrum stores wallet data and configuration in:
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
- **Windows**: `C:\Users\<username>\AppData\Roaming\Pallectrum`
- **Linux/macOS**: `~/.pallectrum`
- **Android**: `<internal storage>/Pallectrum`
## Palladium-Specific Features
Pallectrum includes specific adaptations for the Palladium blockchain:
- BIP21 URI scheme: `palladium:` (instead of `bitcoin:` )
- BIP44 coin type: 746
- Default block explorer: https://explorer.palladium-coin.com/
- Currency unit: PLM (Palladium) instead of BTC
- Checkpoint-based validation (compatible with LWMA difficulty algorithm)
## Development
### Running Tests
```bash
2024-02-19 12:00:08 +00:00
$ pytest tests -v
2022-06-09 17:23:28 +02:00
```
2025-11-24 09:27:54 +01:00
### Project Structure
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
Pallectrum maintains the same structure as Electrum:
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
- `electrum/` - Core wallet library (note: directory name kept for compatibility)
- `contrib/` - Build scripts and utilities
- `tests/` - Unit and integration tests
2022-06-09 17:23:28 +02:00
## Contributing
2025-11-24 09:27:54 +01:00
Contributions are welcome! Please feel free to submit pull requests or open issues on GitHub.
For Pallectrum-specific issues:
- Repository: https://github.com/palladium-coin/pallectrum
For general Electrum-related questions:
- Original project: https://github.com/spesmilo/electrum
2025-11-26 17:25:40 +01:00
### Development Notes
Development of Pallectrum was supported by **Claude 4.5 Sonnet ** (Anthropic AI) for code analysis, debugging, refactoring, and documentation assistance.
2025-11-24 09:27:54 +01:00
## Licence
Pallectrum is released under the terms of the MIT Licence. See [LICENCE ](LICENCE ) for more information.
This project is based on Electrum, which is also released under the MIT Licence.
Copyright (C) 2011-2024 Thomas Voegtlin and contributors
2022-06-09 17:23:28 +02:00
2025-11-24 09:27:54 +01:00
## Links
2025-01-26 18:48:02 +02:00
2025-11-24 09:27:54 +01:00
- **Palladium Explorer**: https://explorer.palladium-coin.com/
- **GitHub Repository**: https://github.com/palladium-coin/pallectrum
- **Original Electrum**: https://electrum.org/
- **Electrum Documentation**: [README-ELECTRUM.md ](README-ELECTRUM.md )