You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Aditya Kulkarni a8cc2424a2 Thread safe cache with separate ingestor 5 years ago
cmd Thread safe cache with separate ingestor 5 years ago
common Thread safe cache with separate ingestor 5 years ago
frontend Thread safe cache with separate ingestor 5 years ago
parser fix compact size length calculation 5 years ago
storage Remove Txtable 5 years ago
testdata Test against the first 20 mainnet blocks 5 years ago
vendor Remove zmq from scaffolding stuff in go 5 years ago
walletrpc Thread safe cache with separate ingestor 5 years ago
.gitignore Add gitignore 5 years ago
README.md Update readme 5 years ago
go.mod Remove UTXOs call 5 years ago
go.sum Remove UTXOs call 5 years ago

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