Equihash/Zcash based coins
- Author: LBE - hellcatz
- Author: LBE - Ondrej Sika https://github.com/ondrejsika/lbe
- License: MIT http://ondrejsika.com/license/mit.txt
Basic CSS enhanced block explorer for Zcash and equihash forks (Zclassic, Zdash, Komodo ...)
LBE requires these rpc calls:
- getbestblockhash
- getblock
- getrawtransaction
- decoderawtransaction
git clone http://github.com/hellcatz/lbe
cd lbe
virtualenv .env
source .env/bin/activate
pip install -r requirements.txt
Show help
python lbe.py -h
/home/user/lbe/start.sh
#!/bin/bash
source .env/bin/activate
python lbe.py :: 8000 localhost 18232 username password --equihash=1 --coin TAZ --n-last-blocks 100
This requires the Xcoind daemon to be setup as a service and running properly.
/etc/systemd/system/lbe-block-explorer.service
[Unit]
Wants=network-online.target
After=network.target network-online.target
Description=LBE Block Explorer Service
[Service]
Environment=HOME=/home/user
Environment=PWD=/home/user/lbe
Environment=PATH=/home/user/bin:/home/user/.local/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
Environment=USER=user
User=user
Group=user
WorkingDirectory=/home/user/lbe
ExecStart=/home/user/lbe/start.sh
Restart=always
[Install]
WantedBy=multi-user.target
sudo systemctl start lbe-block-explorer.service