From 4dc71cfc2e1b711e412fcf2c0fffa589b607e3c3 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Thu, 17 Oct 2019 19:00:00 -0700 Subject: [PATCH 1/2] Update README.md --- README.md | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 9afd434..79b3cd9 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,13 @@ # Overview -Zecwallet lightwalletd is a fork of [lightwalletd](https://github.com/adityapk00/lightwalletd) from the ECC. +SilentDragonLite (SDL) is a fork of Zecwallet lightwalletd, which 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/zecwallet-lite-lib). +It is a backend service that provides a bandwidth-efficient interface to the Hush blockchain for the [SilentDragonLite cli](https://github.com/MyHush/zecwallet-light-cli). ## Changes from upstream lightwalletd -This version of Zecwallet lightwalletd extends lightwalletd and: +This version of lightwalletd extends lightwalletd and: + +* Adds support for HUSH * Adds support for transparent addresses * Adds several new RPC calls for lightclients * Lots of perf improvements @@ -13,7 +15,7 @@ This version of Zecwallet lightwalletd extends lightwalletd and: * Replace local Txstore, delegating Tx lookups to Zcashd * Remove the need for a separate ingestor -## Running your own zeclite lightwalletd +## Running your own SDL lightwalletd #### 0. First, install [Go >= 1.11](https://golang.org/dl/#stable). @@ -23,25 +25,22 @@ openssl req -x509 -newkey rsa:4096 -keyout key.pem -out cert.pem -days 365 -node ``` 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 full node with the following options in HUSH3.conf ``` server=1 rpcuser=user rpcpassword=password rpcbind=127.0.0.1 -rpcport=8232 -experimentalfeatures=1 txindex=1 -insightexplorer=1 ``` #### 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 +go run cmd/server/main.go -bind-addr 127.0.0.1:9069 -conf-file ~/.komodo/HUSH3/HUSH3.conf -tls-cert cert.pem -tls-key key.pem ``` #### 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:9069 --dangerous ``` From 330930fc1b60d68611d92af7b1fbd96848f9b6e8 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Fri, 22 Nov 2019 08:21:09 -0800 Subject: [PATCH 2/2] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 79b3cd9..81f131d 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ You'll need to use the certificate generated from step 1 go run cmd/server/main.go -bind-addr 127.0.0.1:9069 -conf-file ~/.komodo/HUSH3/HUSH3.conf -tls-cert cert.pem -tls-key key.pem ``` -#### 4. Point the `zecwallet-cli` to this server +#### 4. Point the `silentdragon-cli` to this server ``` -./zecwallet-cli --server https://127.0.0.1:9069 --dangerous +./silentdragon-cli --server https://127.0.0.1:9069 --dangerous ```