Zulu wallet is a QT wallet for the PKT Cash blockchain mainnet. This wallet adds a graphical user interface (GUI) to the command line daemon pktwallet. Zulu Wallet runs as a standalone application for macOS currently, and eventually will have support for Unix.
This is a SPV wallet, and no longer a full node. It comes bundled with binaries for pktwallet, and the remote procedure call (RPC) client pktctl. These binaries are stored in the bin folder of this repo. It is also possible to compile these binaries from their respective repositories. If you decide to compile on your own, use this branch of the pkt-cash repo. These binaries should be placed in the bin folder or the wallet will cease to work. It is important to note that the pktwallet binary should be renamed to wallet, and the btcctl binary should be renamed pktctl else they will fail to function properly.
The wallet includes the following features.
- Send and receive transactions.
- Sign transactions.
- Verify transactions.
- Generate new regular addresses.
- Export private keys and import new private keys.
- Password-protect the wallet.
- Save and restore the wallet backup from seed.
- Fold wallet addresses - for large UTXO sets.
- View full transaction history.
Clone the repository.
git clone https://github.com/artrepreneur/Zulu
Please use Python 3. Create an Anaconda environment.
Install zbar
. The zbar DLLs are included with the Windows Python wheels. However, you will need to install the zbar
shared library on other operation systems
brew install zbar
sudo apt-get install libzbar0
Use pip to install the dependencies from requirements.txt.
pip install -r requirements.txt
Swap the binaries for pktwallet and pktctl in the bin directory for linux binaries. You can build them from the repo's mentioned above or use these releases. This is required for linux to work but is optional on mac's.
Finally, change the permissions of the binaries.
chmod 755 bin/*
To run Zulu wallet, just invoke the python script as follows.
pythonw PKTWallet.py
pythonw PKTWallet.py
That's it. If you have a legacy command line wallet already running it will use the existing wallet database already present on your system. If you don't have a command line wallet you will be prompted to create a new wallet. Always, make sure to store your wallet seed in a safe place.
By default, .dmg's are available in releases, but for completeness, and security, you can build your own .dmg using the bundled make script. On mac's you can do the following.
sudo ./make_osx.sh
Your .dmg, and a PKTWallet executable PKTWallet.app
, are both available in the ./dist
directory. To run it, copy it to the applications folder and run it as a normal app.
cp -rf ./dist/PKTWallet.app /Applications
You can also run the .dmg which will install the PKTWallet.app where it needs to go. Mac's will require you to go to System Preferences > Security & Privacy
and allow the application to run.