Go to file
Aditya Kulkarni a08e49668a v1.8.7 2023-04-10 11:36:11 -05:00
.github fix build 2023-03-02 12:03:12 -06:00
.vscode v1.8.0-beta2 2022-06-30 13:02:07 -05:00
bin v1.8.7 2023-04-10 11:36:11 -05:00
configs 1.8.0-beta1 2022-06-24 09:46:44 -05:00
public 1.8.3 2022-07-29 11:45:58 -05:00
resources 1.8.0-beta1 2022-06-24 09:46:44 -05:00
src v1.8.7 2023-04-10 11:36:11 -05:00
.gitignore 1.8.0-beta1 2022-06-24 09:46:44 -05:00
LICENSE Add release script 2018-10-16 14:08:08 -07:00
README.md v1.8.7 2023-04-10 11:36:11 -05:00
afterSignHook.js Upgrade electron and all dependencies 2022-06-23 09:25:44 -05:00
package.json v1.8.7 2023-04-10 11:36:11 -05:00
public_key.asc #106 - Add public key, verification procedure 2019-02-19 14:56:26 -08:00
tsconfig.json Upgrade electron and all dependencies 2022-06-23 09:25:44 -05:00
yarn.lock Upgrade electron and all dependencies 2022-06-23 09:25:44 -05:00

README.md

ZecWallet Fullnode is a z-Addr first, Sapling compatible wallet and full node for zcashd that runs on Linux, Windows and macOS.

Screenshot Screenshots

Installation

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.

Head over to the releases page and grab the latest installers or binary. https://www.zecwallet.co

Linux

If you are on Debian/Ubuntu, please download the '.AppImage' package and just run it.

./Zecwallet.Fullnode-1.8.7.AppImage

If you prefer to install a .deb package, that is also available.

sudo apt install -f ./zecwallet_1.8.7_amd64.deb

Windows

Download and run the .msi installer and follow the prompts. Alternately, you can download the release binary, unzip it and double click on zecwallet.exe to start.

macOS

Double-click on the .dmg file to open it, and drag Zecwallet Fullnode on to the Applications link to install.

Running zcashd

ZecWallet needs a Zcash node running zcashd. If you already have a zcashd node running, ZecWallet will connect to it.

You need to manually start the zcashd node so that Zecwallet can connect to it. The first time you run zcashd, you need to:

  1. Create a zcash.conf file with at least:
server=1
rpcuser=<someusername>
rpcpassword=<somepassword>
  1. Run ./fetch-params.sh to get the Zcash params

  2. Run ./zcashd-wallet-tool to configure your seed phrase and set up your Orchard accounts.

All binaries needed are included in the distribution.

Compiling from source

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.

Pre-Requisits

You need to have the following software installed before you can build Zecwallet Fullnode

git clone https://github.com/ZcashFoundation/zecwallet.git
cd zecwallet

yarn install
yarn build

To start in development mode, run

yarn dev

To start in production mode, run

yarn start

Troubleshooting Guide & FAQ

Please read the troubleshooting guide for common problems and solutions. For support or other questions, tweet at @zecwallet or file an issue.

PS: ZecWallet is NOT an official wallet, and is not affiliated with the Electric Coin Company in any way.