Go to file
Aditya Kulkarni 7bf4a8407b Read sapling activation height from RPC 2019-09-18 20:38:59 -07:00
cmd Read sapling activation height from RPC 2019-09-18 20:38:59 -07:00
frontend Return tx heights 2019-09-17 13:26:23 -07:00
parser Fix hash encoding, change module names 2019-09-12 12:08:53 -07:00
storage Read sapling activation height from RPC 2019-09-18 20:38:59 -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 Return tx heights 2019-09-17 13:26:23 -07:00
README.md Update readme 2019-09-17 20:58:01 -07:00
go.mod Fix hash encoding, change module names 2019-09-12 12:08:53 -07:00
go.sum Fix hash encoding, change module names 2019-09-12 12:08:53 -07:00

README.md

Overview

zeclite 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 zeclite 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

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=0.0.0.0
rpcport=18232
experimentalfeatures=1
txindex=1
insightexplorer=1
  1. Run the ingester:
go run cmd/ingest/main.go -conf-file ~/.zcash/zcash.conf -db-path ~/.zcash/testnet3/sqllightdb
  1. Run the frontend:
go run cmd/server/main.go -bind-addr 0.0.0.0:9067 -conf-file ~/.zcash/zcash.conf -db-path ~/.zcash/testnet3/sqllightdb
  1. Point the zeclite-cli to this server
./zeclite-cli --server 127.0.0.1:9067