Go to file
chaser fffd5666f6
correct import private key menu label (#122)
only one key can be imported at a time
2021-10-14 11:54:25 -07:00
.github Fix ubuntu version 2021-10-14 11:14:22 -07:00
.vscode Monitor mempool for txns 2021-07-14 11:12:11 -07:00
bin v1.7.8 2021-10-14 10:51:19 -07:00
config Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
configs Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
internals Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
native v1.7.8 2021-10-14 10:51:19 -07:00
public Fix app name 2021-06-28 12:07:05 -07:00
resources Switch to React UI 2020-03-05 13:32:26 -08:00
scripts Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
src correct import private key menu label (#122) 2021-10-14 11:54:25 -07:00
.dockerignore Switch to React UI 2020-03-05 13:32:26 -08:00
.editorconfig Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
.gitattributes Switch to React UI 2020-03-05 13:32:26 -08:00
.gitignore Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
LICENSE Switch to React UI 2020-03-05 13:32:26 -08:00
README.md Update README.md 2021-03-22 10:39:02 -07:00
afterSignHook.js Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
package.json v1.7.8 2021-10-14 10:51:19 -07:00
public_key.asc #106 - Add public key, verification procedure 2019-02-19 14:56:26 -08:00
tsconfig.json Upgrade dependencies (#109) 2021-06-25 10:00:42 -07:00
yarn.lock Monitor mempool for txns 2021-07-14 11:12:11 -07:00

README.md

ZecWallet Lite

Zecwallet-Lite is z-Addr first, Sapling compatible lightwallet client for Zcash. It has full support for all Zcash features:

  • Send + Receive fully shielded transactions
  • Supports transparent addresses and transactions
  • Full support for incoming and outgoing memos
  • Fully encrypt your private keys, using viewkeys to sync the blockchain

Download

Download compiled binaries from our release page

Privacy

  • While all the keys and transaction detection happens on the client, the server can learn what blocks contain your shielded transactions.
  • The server also learns other metadata about you like your ip address etc...
  • Also remember that t-addresses don't provide any privacy protection.

Note Management

Zecwallet-Lite does automatic note and utxo management, which means it doesn't allow you to manually select which address to send outgoing transactions from. It follows these principles:

  • Defaults to sending shielded transactions, even if you're sending to a transparent address
  • Sapling funds need at least 5 confirmations before they can be spent
  • Can select funds from multiple shielded addresses in the same transaction
  • Will automatically shield your transparent funds at the first opportunity
    • When sending an outgoing transaction to a shielded address, Zecwallet-Lite can decide to use the transaction to additionally shield your transparent funds (i.e., send your transparent funds to your own shielded address in the same transaction)

Compiling from source

Zecwallet Lite is written in Electron/Javascript and can be build from source. It will also automatically compile the Rust SDK needed to run Zecwallet Lite.

Pre-Requisites

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

git clone https://github.com/adityapk00/zecwallet-lite.git
cd zecwallet-lite

yarn install
yarn build

To start in development mode, run

yarn dev

To start in production mode, run

yarn start

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