Go to file
Josh Cincinnati 5aaa096338
updates readme
to reflect that zepio is no longer actively maintained
2020-03-25 22:52:18 -04:00
.github/ISSUE_TEMPLATE docs(issues): fix question project name 2019-06-06 22:24:37 -03:00
__mocks__ test(e2e): make sure e2e tests are passing 2019-05-30 12:45:01 -03:00
__tests__ feat(status-pill): add StatusPill refetching status 2019-06-04 21:31:15 -03:00
app chore(console): use rpc to populate the data 2019-06-17 15:58:21 -03:00
bin Update zcashd to 2.1.0 2019-12-18 14:15:31 -08:00
build-assets chore: update zec-wallet icon 2019-01-07 14:20:33 -03:00
config feat(daemon): save DAEMON_START_TIME on store 2019-06-17 15:56:24 -03:00
flow-custom-typedefs chore(console): use rpc to populate the data 2019-06-17 15:58:21 -03:00
public type(flow): update flowtype badge 2019-06-17 21:59:30 -04:00
scripts feat(release): change binaries filenames 2019-04-15 22:12:29 -03:00
services chore(api): add logs for success call 2019-05-30 00:37:37 -03:00
utils fix(script): fix clean-store script 2019-04-11 18:03:31 -03:00
.babelrc hotfix: add electron-compiler 2019-01-03 13:55:52 -03:00
.env.example feature: setup dotenv 2018-12-15 18:45:48 -03:00
.eslintignore type(libs): add custom typedefs 2019-01-28 21:33:23 -03:00
.eslintrc chore(flow): bump 0.99.1 2019-05-29 23:10:06 -03:00
.flowconfig type(styled): add theme as default prop in interpolations 2019-02-07 13:31:59 -03:00
.gitignore feature: setup dotenv 2018-12-15 18:45:48 -03:00
CODE_OF_CONDUCT.md docs: adding code of conduct 2018-11-30 23:55:48 -05:00
CONTRIBUTING.md chore(docs): update docs 2019-05-27 16:04:42 -04:00
DEVELOPMENT_WORKFLOW.md chore(docs): updating and improving documentation 2019-04-28 22:50:12 -04:00
LICENSE.md chore(docs): updating and improving documentation 2019-04-28 22:50:12 -04:00
README.md updates readme 2020-03-25 22:52:18 -04:00
coverage.json type(libs): add new typedefs 2019-01-29 19:18:06 -03:00
doczrc.js chore(docs): updating and improving documentation 2019-04-28 22:50:12 -04:00
package.json chore: upgrade to zcash 2.1.0 blossom 2019-12-18 17:31:15 -05:00
public_key.asc chore(pk): signing public key 2019-05-30 21:51:50 -04:00
yarn.lock chore(console): use rpc to populate the data 2019-06-17 15:58:21 -03:00

README.md

ZEPIO IS NO LONGER ACTIVELY MAINTAINED

We will be archiving this repo soon. If you would like a shielded-first desktop wallet, we recommend ZecWallet.

Zepio is a Sapling-enabled shielded-address-first Zcash wallet, featuring cross-platform applications (macOS, Windows and Linux), built-in full node with support for mainnet and testnet, as well as dark and light themes.

Build Status Flow Coverage

Latest Documentation

Latest Release

Zepio Wallet

Stack Information

List of the main open source libraries and technologies used in building Zepio:

  • zcashd: Zcash node daemon
  • Electron: Desktop application builder
  • React: User interface view layer
  • Redux: Predictable application state container
  • Styled Components: Visual primitives for theming and styling applications
  • webpack: Application module bundler (and more)
  • Babel: ES7/JSX transpilling
  • ESLint: Code linting rules
  • Flow: JavaScript static type checker
  • Docz: Documentation builder
  • BigNumber.js: Arbitrary-precision decimal and non-decimal arithmetic with safety

Installing and Running From Source

To run Zepio from source you'll need to perform the following steps:

# Ensure you have Node LTS v8+
# https://nodejs.org/en/

# Clone Codebase
git clone git@github.com:ZcashFoundation/zepio.git

# Install Dependencies
# inside of the `zepio` folder
yarn install
# or
npm install

# Start Application
# webpack development server hosts the application on port
# 8080 and launches the Electron wrapper, which also hosts
# the `zcashd` node daemon process.
yarn start
# or
npm start

Building Application Locally

To build the application locally follow the instructions below:

# Make sure you are inside of the main `zepio` folder

# Run Build Script
yarn electron:distall

# Executables and binaries available under `/dist` folder

Flow Coverage (Static Type Checker)

For a deeper look on the static typing coverage of the application, please follow below:

# Make sure you are inside of the main `zepio` folder

# Generate Flow Coverage Report
# this can take a couple seconds
yarn flow:report

# Browser should open with the file `index.html` opened
# Files are also available at `zepio/flow-coverage/source`

Component Library (Docz)

To see Zepio's React component library, please visit https://zepio-components.now.sh. We're always looking for folks to help keep the styleguide updated.

To run the component library locally, run the following:

# Make sure you are inside of the main `zepio` folder

# Run Docz Development Script
yarn docz:dev

# Visit http://127.0.0.1:4000/

To build the component library locally, run the following:

# Make sure you are inside of the main `zepio` folder

# Run Build Script
yarn docz:build

# Check `/.docz/dist` folder for built static assets

Tests

To run the application's tests, please run the below:

# Make sure you are inside of the main `zepio` folder

# For Unit Tests: Run Jest Unit Test Suite
yarn test:unit

# For E2E (end-to-end) Tests: Run Jest E2E Suite
yarn e2e:serve
# on another terminal window
yarn test e2e

Contributing

In order to contribute and submit PRs to improve the Zepio codebase, please check our CONTRIBUTING guide.

License

MIT © Zcash Foundation 2019 zfnd.org