Update README.md

This commit is contained in:
adityapk00
2019-10-09 13:12:51 -07:00
committed by GitHub
parent abf3a3a96c
commit de3a1d77bb

View File

@@ -2,10 +2,10 @@
Zecwallet 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 [Zecwallet 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/zecwallet-lite-lib).
## Changes from upstream lightwalletd ## Changes from upstream lightwalletd
This version of zeclite lightwalletd extends lightwalletd and: This version of Zecwallet lightwalletd extends lightwalletd and:
* Adds support for transparent addresses * Adds support for transparent addresses
* Adds several new RPC calls for lightclients * Adds several new RPC calls for lightclients
* Lots of perf improvements * Lots of perf improvements
@@ -15,15 +15,15 @@ This version of zeclite lightwalletd extends lightwalletd and:
## Running your own zeclite lightwalletd ## Running your own zeclite lightwalletd
0. First, install [Go >= 1.11](https://golang.org/dl/#stable). #### 0. First, install [Go >= 1.11](https://golang.org/dl/#stable).
1. Generate a TLS self-signed certificate #### 1. Generate a TLS self-signed certificate
``` ```
openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -nodes
``` ```
Answer the certificate questions to generate the self-signed certificate Answer the certificate questions to generate the self-signed certificate
2. You need to run a zcash full node with the following options in zcash.conf #### 2. You need to run a zcash full node with the following options in zcash.conf
``` ```
server=1 server=1
testnet=1 testnet=1
@@ -36,13 +36,13 @@ txindex=1
insightexplorer=1 insightexplorer=1
``` ```
3. Run the frontend: #### 3. Run the frontend:
You'll need to use the certificate generated from step 1 You'll need to use the certificate generated from step 1
``` ```
go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.zcash/zcash.conf -tls-cert cert.pem -tls-key key.pem go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.zcash/zcash.conf -tls-cert cert.pem -tls-key key.pem
``` ```
4. Point the `zecwallet-cli` to this server #### 4. Point the `zecwallet-cli` to this server
``` ```
./zecwallet-cli --server https://127.0.0.1:9067 --dangerous ./zecwallet-cli --server https://127.0.0.1:9067 --dangerous
``` ```