From abf3a3a96c672dec5f17b0407e9ac74170c3e174 Mon Sep 17 00:00:00 2001 From: adityapk00 <31996805+adityapk00@users.noreply.github.com> Date: Wed, 9 Oct 2019 13:10:13 -0700 Subject: [PATCH 1/3] Update README.md --- README.md | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index e2a610c..3b8a5bc 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,13 @@ This version of zeclite lightwalletd extends lightwalletd and: 0. First, install [Go >= 1.11](https://golang.org/dl/#stable). -1. You need to run a zcash full node with the following options in zcash.conf +1. Generate a TLS self-signed certificate +``` +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 + +2. You need to run a zcash full node with the following options in zcash.conf ``` server=1 testnet=1 @@ -30,12 +36,13 @@ txindex=1 insightexplorer=1 ``` -2. Run the frontend: +3. Run the frontend: +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 +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 ``` -3. Point the `zecwallet-cli` to this server +4. Point the `zecwallet-cli` to this server ``` -./zeclite-cli --server 127.0.0.1:9067 +./zecwallet-cli --server https://127.0.0.1:9067 --dangerous ``` From de3a1d77bbe27717b579150a64e3c2c1410c5230 Mon Sep 17 00:00:00 2001 From: adityapk00 <31996805+adityapk00@users.noreply.github.com> Date: Wed, 9 Oct 2019 13:12:51 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 3b8a5bc..353b819 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,10 @@ 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 -This version of zeclite lightwalletd extends lightwalletd and: +This version of Zecwallet lightwalletd extends lightwalletd and: * Adds support for transparent addresses * Adds several new RPC calls for lightclients * Lots of perf improvements @@ -15,15 +15,15 @@ This version of zeclite lightwalletd extends lightwalletd and: ## 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 ``` 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 testnet=1 @@ -36,13 +36,13 @@ txindex=1 insightexplorer=1 ``` -3. Run the frontend: +#### 3. Run the frontend: 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 ``` -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 ``` From acbafb04630eb1316f9e2e31896a3b5e0da966d9 Mon Sep 17 00:00:00 2001 From: adityapk00 <31996805+adityapk00@users.noreply.github.com> Date: Wed, 9 Oct 2019 14:49:25 -0700 Subject: [PATCH 3/3] Update README.md --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 353b819..9afd434 100644 --- a/README.md +++ b/README.md @@ -26,11 +26,10 @@ 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 ``` server=1 -testnet=1 rpcuser=user rpcpassword=password rpcbind=127.0.0.1 -rpcport=18232 +rpcport=8232 experimentalfeatures=1 txindex=1 insightexplorer=1