Update README.md

This commit is contained in:
adityapk00 2019-10-02 10:26:44 -07:00 committed by GitHub
parent c688de510e
commit 30db94d290
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 12 deletions

View File

@ -1,13 +1,17 @@
# Overview
zeclite lightwalletd is a fork of [lightwalletd](https://github.com/adityapk00/lightwalletd) from the ECC.
Zecwallet lightwalletd is a fork of [lightwalletd](https://github.com/adityapk00/lightwalletd) from the ECC.
It is a backend service that provides a bandwidth-efficient interface to the Zcash blockchain for the [zeclite light wallet](https://github.com/adityapk00/lightwalletclient).
It is a backend service that provides a bandwidth-efficient interface to the Zcash blockchain for the [Zecwallet light wallet](https://github.com/adityapk00/lightwalletclient).
## 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
@ -19,24 +23,19 @@ server=1
testnet=1
rpcuser=user
rpcpassword=password
rpcbind=0.0.0.0
rpcbind=127.0.0.1
rpcport=18232
experimentalfeatures=1
txindex=1
insightexplorer=1
```
2. Run the ingester:
2. Run the frontend:
```
go run cmd/ingest/main.go -conf-file ~/.zcash/zcash.conf -db-path ~/.zcash/testnet3/sqllightdb
go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.zcash/zcash.conf
```
3. 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
```
4. Point the `zeclite-cli` to this server
3. Point the `zecwallet-cli` to this server
```
./zeclite-cli --server 127.0.0.1:9067
```
```