Go to file
Aditya Kulkarni e68b202928 Display hash properly 2019-10-09 15:07:11 -07:00
cmd/server Store serialized bytes in cache 2019-10-01 11:05:43 -07:00
common Display hash properly 2019-10-09 15:07:11 -07:00
frontend add bytestring tests 2019-09-26 11:33:24 -07:00
parser GetDisplayPrevHash() should not change its argument 2019-10-09 14:54:35 -07:00
testdata Test against the first 20 mainnet blocks 2019-05-22 12:04:02 -04:00
vendor Remove zmq from scaffolding stuff in go 2019-08-27 14:07:42 -07:00
walletrpc Thread safe cache with separate ingestor 2019-09-25 21:15:32 -07:00
.gitignore Display hash properly 2019-10-09 15:07:11 -07:00
README.md Update README.md 2019-10-02 10:26:44 -07:00
go.mod Remove btcd dependency 2019-10-08 09:59:54 -07:00
go.sum Display hash properly 2019-10-09 15:07:11 -07:00

README.md

Overview

Zecwallet lightwalletd is a fork of lightwalletd from the ECC.

It is a backend service that provides a bandwidth-efficient interface to the Zcash blockchain for the Zecwallet light wallet.

Changes from upstream lightwalletd

This version of zeclite lightwalletd extends lightwalletd and:

  • Adds support for transparent addresses
  • Adds several new RPC calls for lightclients
  • Lots of perf improvements
    • Replaces SQLite with in-memory cache for Compact Blocks
    • Replace local Txstore, delegating Tx lookups to Zcashd
    • Remove the need for a separate ingestor

Running your own zeclite lightwalletd

  1. First, install Go >= 1.11.

  2. You need to run a zcash full node with the following options in zcash.conf

server=1
testnet=1
rpcuser=user
rpcpassword=password
rpcbind=127.0.0.1
rpcport=18232
experimentalfeatures=1
txindex=1
insightexplorer=1
  1. Run the frontend:
go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.zcash/zcash.conf
  1. Point the zecwallet-cli to this server
./zeclite-cli --server 127.0.0.1:9067