Backend server for SDL
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.

48 lines
1.5 KiB

# Overview
5 years ago
Zecwallet lightwalletd is a fork of [lightwalletd](https://github.com/adityapk00/lightwalletd) from the ECC.
5 years ago
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).
5 years ago
## Changes from upstream lightwalletd
5 years ago
This version of Zecwallet lightwalletd extends lightwalletd and:
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 zeclite lightwalletd
5 years ago
#### 0. First, install [Go >= 1.11](https://golang.org/dl/#stable).
5 years ago
#### 1. Generate a TLS self-signed certificate
5 years ago
```
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
5 years ago
#### 2. You need to run a zcash full node with the following options in zcash.conf
```
5 years ago
server=1
rpcuser=user
rpcpassword=password
5 years ago
rpcbind=127.0.0.1
5 years ago
rpcport=8232
5 years ago
experimentalfeatures=1
txindex=1
insightexplorer=1
```
5 years ago
#### 3. Run the frontend:
5 years ago
You'll need to use the certificate generated from step 1
```
5 years ago
go run cmd/server/main.go -bind-addr 127.0.0.1:9067 -conf-file ~/.komodo/HUSH3/HUSH3.conf -tls-cert cert.pem -tls-key key.pem
```
5 years ago
#### 4. Point the `zecwallet-cli` to this server
5 years ago
```
5 years ago
./zecwallet-cli --server https://127.0.0.1:9067 --dangerous
5 years ago
```