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.

74 lines
2.8 KiB

# Overview
4 years ago
SilentDragonLite (SDL) is a fork of silentdragonlite lightwalletd, which is a fork of [lightwalletd](https://github.com/adityapk00/lightwalletd) from the ECC.
4 years ago
It is a backend service that provides a bandwidth-efficient interface to the Hush blockchain for the [SilentDragonLite cli](https://github.com/MyHush/silentdragonlite-light-cli).
5 years ago
## Changes from upstream lightwalletd
5 years ago
This version of lightwalletd extends lightwalletd and:
* Adds support for HUSH
5 years ago
* Adds support for transparent addresses
* Adds several new RPC calls for lightclients
5 years ago
* 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
5 years ago
## Running your own SDL lightwalletd
5 years ago
#### 0. First, install [Go >= 1.11](https://golang.org/dl/#stable).
4 years ago
#### 1. Run a zcash node.
Start a `hushd` with the following options:
```
5 years ago
server=1
rpcuser=user
rpcpassword=password
5 years ago
rpcbind=127.0.0.1
5 years ago
txindex=1
```
4 years ago
You might need to run with `-reindex` the first time if you are enabling the `txindex` or `insightexplorer` options for the first time. The reindex might take a while.
#### 2. Get a TLS certificate
##### "Let's Encrypt" certificate using NGINX as a reverse proxy
If you running a public-facing server, the easiest way to obtain a certificate is to use a NGINX reverse proxy and get a Let's Encrypt certificate. [Instructions are here](https://www.nginx.com/blog/using-free-ssltls-certificates-from-lets-encrypt-with-nginx/)
Create a new section for the NGINX reverse proxy:
```
server {
listen 443 ssl http2;
ssl_certificate ssl/cert.pem; # From certbot
ssl_certificate_key ssl/key.pem; # From certbot
location / {
# Replace localhost:9067 with the address and port of your gRPC server if using a custom port
grpc_pass grpc://localhost:9067;
}
}
```
5 years ago
#### 3. Run the frontend:
4 years ago
You can run the gRPC server with or without TLS, depending on how you configured step 2. If you are using NGINX as a reverse proxy and are letting NGINX handle the TLS authentication, then run the frontend with `-no-tls`
```
4 years ago
go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.komodo/HUSH3/HUSH3.conf -no-tls
```
4 years ago
If you have a certificate that you want to use (either self signed, or from a certificate authority), pass the certificate to the frontend:
```
go run cmd/server/main.go -bind-addr 127.0.0.1:443 -conf-file ~/.komodo/HUSH3/HUSH3.conf -tls-cert /etc/letsencrypt/live/YOURWEBSITE/fullchain.pem -tls-key /etc/letsencrypt/live/YOURWEBSITE/privkey.pem
```
4 years ago
You should start seeing the frontend ingest and cache the zcash blocks after ~15 seconds.
#### 4. Point the `silentdragonlite-cli` to this server
Connect to your server!
5 years ago
```
4 years ago
./silentdragonlite-cli -server https://lite.myhush.org
5 years ago
```