v0.1.9 release
This commit is contained in:
26
README.md
26
README.md
@@ -1,10 +1,10 @@
|
|||||||
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd
|
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd that runs on Windows and Linux
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
# Installation
|
# Installation
|
||||||
|
|
||||||
zcash-qt-wallet needs a zcash node running zcashd. Download the zcash node software from https://z.cash/download/ and start zcashd.
|
zcash-qt-wallet needs a zcash node running zcashd. Download the zcash node software from https://z.cash/download/ and start zcashd. If you are running Windows, you can get [WinZEC](https://winzec.com/)
|
||||||
|
|
||||||
## Prerequisites: zcashd
|
## Prerequisites: zcashd
|
||||||
zcashd needs to run with RPC enabled and with a RPC username/password set. Add the following entries into ~/.zcash/zcash.conf
|
zcashd needs to run with RPC enabled and with a RPC username/password set. Add the following entries into ~/.zcash/zcash.conf
|
||||||
@@ -13,17 +13,22 @@ zcashd needs to run with RPC enabled and with a RPC username/password set. Add t
|
|||||||
rpcuser=username
|
rpcuser=username
|
||||||
rpcpassword=password
|
rpcpassword=password
|
||||||
```
|
```
|
||||||
and restart zcashd
|
zcash-qt-wallet should auto-detect zcashd and WinZEC. If you are running zcashd on WSL, then please set the connection parameters in the File->Settings menu.
|
||||||
|
|
||||||
## Installing zcash-qt-wallet
|
## Installing zcash-qt-wallet
|
||||||
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zcash-qt-wallet/releases
|
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zcash-qt-wallet/releases
|
||||||
|
|
||||||
|
|
||||||
|
### Linux
|
||||||
Extract and run the binary
|
Extract and run the binary
|
||||||
```
|
```
|
||||||
tar -xvf zcash-qt-wallet-v0.1.8.tar.gz
|
tar -xvf zcash-qt-wallet-v0.1.9.tar.gz
|
||||||
./zcash-qt-wallet-v0.1.8/zcash-qt-wallet
|
./zcash-qt-wallet-v0.1.9/zcash-qt-wallet
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
Unzip the release binary and double click on zcash-qt-wallet to start.
|
||||||
|
|
||||||
## Compiling from source
|
## Compiling from source
|
||||||
zcash-qt-wallet depends on Qt5, which you can get from here: https://www.qt.io/download
|
zcash-qt-wallet depends on Qt5, which you can get from here: https://www.qt.io/download
|
||||||
|
|
||||||
@@ -39,6 +44,15 @@ make -j$(nproc)
|
|||||||
./zcash-qt-wallet
|
./zcash-qt-wallet
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Compiling on Windows
|
||||||
|
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
|
||||||
|
|
||||||
|
From the VS Tools command prompt
|
||||||
|
```
|
||||||
|
c:\Qt5\bin\qmake.exe zcash-qt-wallet.pro -tp vc CONFIG+=debug
|
||||||
|
```
|
||||||
|
This will create the Visual Studio project files. You can then open Visual Studio and compile and run normally.
|
||||||
|
|
||||||
## Troubleshooting FAQ
|
## Troubleshooting FAQ
|
||||||
### 1. "Connection Error"
|
### 1. "Connection Error"
|
||||||
|
|
||||||
@@ -48,7 +62,7 @@ from your host and also zcashd is set to be configured to accept connections fro
|
|||||||
|
|
||||||
The easiest way to connect to a remote node is probably to ssh to it with port forwarding like this:
|
The easiest way to connect to a remote node is probably to ssh to it with port forwarding like this:
|
||||||
```
|
```
|
||||||
ssh -L8232:127.0.0.1:8232 user@remotehost
|
ssh -L8232:127.0.0.1.9232 user@remotehost
|
||||||
```
|
```
|
||||||
### 2. "Not enough balance" when sending transactions
|
### 2. "Not enough balance" when sending transactions
|
||||||
The most likely cause for this is that you are trying to spend unconfirmed funds. Unlike bitcoin, the zcash protocol doesn't let you spent unconfirmed funds yet. Please wait for
|
The most likely cause for this is that you are trying to spend unconfirmed funds. Unlike bitcoin, the zcash protocol doesn't let you spent unconfirmed funds yet. Please wait for
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ PRECOMPILED_HEADER = src/precompiled.h
|
|||||||
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
|
||||||
|
|
||||||
TARGET = zcash-qt-wallet
|
TARGET = zcash-qt-wallet
|
||||||
APP_VERSION=\\\"0.1.8\\\"
|
APP_VERSION=\\\"0.1.9\\\"
|
||||||
|
|
||||||
|
|
||||||
TEMPLATE = app
|
TEMPLATE = app
|
||||||
|
|||||||
Reference in New Issue
Block a user