You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+20-6
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
-
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd
1
+
zcash-qt-wallet is a z-Addr first wallet UI frontend for zcashd that runs on Windows and Linux
2
2
3
3

4
4
5
5
# Installation
6
6
7
-
zcash-qt-wallet needs a zcash node running zcashd. Download the zcash node software from https://z.cash/download/ and start zcashd.
7
+
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/)
8
8
9
9
## Prerequisites: zcashd
10
10
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
13
13
rpcuser=username
14
14
rpcpassword=password
15
15
```
16
-
and restart zcashd
16
+
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.
17
17
18
18
## Installing zcash-qt-wallet
19
19
Head over to the releases page and grab the latest binary. https://github.com/adityapk00/zcash-qt-wallet/releases
20
20
21
+
22
+
### Linux
21
23
Extract and run the binary
22
24
```
23
-
tar -xvf zcash-qt-wallet-v0.1.8.tar.gz
24
-
./zcash-qt-wallet-v0.1.8/zcash-qt-wallet
25
+
tar -xvf zcash-qt-wallet-v0.1.9.tar.gz
26
+
./zcash-qt-wallet-v0.1.9/zcash-qt-wallet
25
27
```
26
28
29
+
### Windows
30
+
Unzip the release binary and double click on zcash-qt-wallet to start.
31
+
27
32
## Compiling from source
28
33
zcash-qt-wallet depends on Qt5, which you can get from here: https://www.qt.io/download
29
34
@@ -39,6 +44,15 @@ make -j$(nproc)
39
44
./zcash-qt-wallet
40
45
```
41
46
47
+
### Compiling on Windows
48
+
You need Visual Studio 2017 (The free C++ Community Edition works just fine).
This will create the Visual Studio project files. You can then open Visual Studio and compile and run normally.
55
+
42
56
## Troubleshooting FAQ
43
57
### 1. "Connection Error"
44
58
@@ -48,7 +62,7 @@ from your host and also zcashd is set to be configured to accept connections fro
48
62
49
63
The easiest way to connect to a remote node is probably to ssh to it with port forwarding like this:
50
64
```
51
-
ssh -L8232:127.0.0.1:8232 user@remotehost
65
+
ssh -L8232:127.0.0.1.9232 user@remotehost
52
66
```
53
67
### 2. "Not enough balance" when sending transactions
54
68
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
0 commit comments