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-8
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ ZecWallet Fullnode is a z-Addr first, Sapling compatible wallet and full node fo
5
5
6
6
# Installation
7
7
8
-
**Note**: Zecwallet Fullnode will download the **entire blockchain (about 26GB)**, and requires some familiarity with the command line. If you don't want to download the blockchain but prefer a Lite wallet, please check out [Zecwallet Lite](https://www.zecwallet.co).
8
+
**Note**: Zecwallet Fullnode will download the **entire blockchain (about 36GB)**, and requires some familiarity with the command line. If you don't want to download the blockchain but prefer a Lite wallet, please check out [Zecwallet Lite](https://www.zecwallet.co).
9
9
10
10
Head over to the releases page and grab the latest installers or binary. https://www.zecwallet.co
11
11
@@ -14,13 +14,13 @@ Head over to the releases page and grab the latest installers or binary. https:/
14
14
If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it.
15
15
16
16
```
17
-
./Zecwallet.Fullnode-1.8.0-beta2.AppImage
17
+
./Zecwallet.Fullnode-1.8.0.AppImage
18
18
```
19
19
20
20
If you prefer to install a `.deb` package, that is also available.
@@ -31,23 +31,35 @@ Download and run the `.msi` installer and follow the prompts. Alternately, you c
31
31
32
32
Double-click on the `.dmg` file to open it, and drag `Zecwallet Fullnode` on to the Applications link to install.
33
33
34
-
## zcashd
34
+
## Running zcashd
35
35
36
36
ZecWallet needs a Zcash node running zcashd. If you already have a zcashd node running, ZecWallet will connect to it.
37
37
38
-
If you don't have one, ZecWallet will start its embedded zcashd node.
38
+
You need to manually start the zcashd node so that Zecwallet can connect to it. The first time you run zcashd, you need to:
39
39
40
-
Additionally, if this is the first time you're running ZecWallet or a zcashd daemon, ZecWallet will download the Zcash params (~777 MB) and configure `zcash.conf` for you.
40
+
1. Create a zcash.conf file with at least:
41
+
42
+
```
43
+
server=1
44
+
rpcuser=<someusername>
45
+
rpcpassword=<somepassword>
46
+
```
47
+
48
+
2. Run `./fetch-params.sh` to get the Zcash params
49
+
50
+
3. Run `./zcashd-wallet-tool` to configure your seed phrase and set up your Orchard accounts.
51
+
52
+
All binaries needed are included in the distribution.
41
53
42
54
## Compiling from source
43
55
44
-
ZecWallet is written in Electron/Javascript and can be build from source. Note that if you are compiling from source, you won't get the embedded zcashd by default. You can either run an external zcashd, or compile zcashd as well.
56
+
ZecWallet is written in Electron/Typescript and can be build from source. Note that if you are compiling from source, you won't get the embedded zcashd by default. You can either run an external zcashd, or compile zcashd as well.
45
57
46
58
#### Pre-Requisits
47
59
48
60
You need to have the following software installed before you can build Zecwallet Fullnode
0 commit comments