Vidulum Desktop Wallet is a Sapling-enabled shielded-address-first Vidulum 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.
List of the main open source libraries and technologies used in building Vidulum Desktop Wallet:
To run Vidulum Desktop Wallet from source you'll need to perform the following steps:
# Ensure you have Node LTS v12+
# https://nodejs.org/en/
# Clone Codebase
git clone git@github.com:vidulum/DesktopWallet.git
# Install Dependencies
# inside of the `DesktopWallet` folder
yarn install <-- i like this one :)
# or
npm install
# Start Application
# webpack development server hosts the application on port
# 8080 and launches the Electron wrapper, which also hosts
# the `vidulumd` node daemon process.
yarn start
# or
npm start
To build the application locally follow the instructions below:
# Make sure you are inside of the main `DesktopWallet` folder
# Run Build Script
yarn electron:distall
# Executables and binaries available under `/dist` folder
For a deeper look on the static typing coverage of the application, please follow below:
# Make sure you are inside of the main `DesktopWallet` 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 `DesktopWallet/flow-coverage/source`
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 `DesktopWallet` 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 `DesktopWallet` folder
# Run Build Script
yarn docz:build
# Check `/.docz/dist` folder for built static assets
To run the application's tests, please run the below:
# Make sure you are inside of the main `DesktopWallet` 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
In order to contribute and submit PRs to improve the Vidulum Desktop Wallet codebase, please check our CONTRIBUTING guide.
MIT © ZCash Foundation 2019 zfnd.org MIT Vidulum 2019 vidulum.app