Skip to content

vitelabs/vite-wallet

Repository files navigation

vite-wallet

The Desktop Wallet of Vite.

Installation

The Vite Desktop Wallet supports Mac and Windows. Download and install.

Development

Init submodule

This project requires the vite-web-wallet. You need init submodules first.

git submodule init
git submodule update

Install

Install dependencies

yarn

Install the dependencies of vite-web-wallet

cd ../vite-web-wallet
# Be sure you are in the folder of vite-web-wallet
yarn

Develop Mode

Launch the local dev server of vite-web-wallet

# Be sure you are in the folder of vite-web-wallet
yarn dev

Now open a new tab on terminal

yarn dev

Build

First, you need build the vite-web-wallet dist:

# Be sure you are in the folder of vite-web-wallet
yarn build

Second, you need to build vite-wallet:

cd ../vite-wallet
# Be sure you are in the folder of vite-wallet

# Build Mac installation
yarn build

# Build Windows installation
yarn build:win

Verify Signature

For Security Purpose, Please Verify The Installation File Before Using!!!

First, import PGP Public Key: BCB054E548A093056A8BAE91F8809A14954ACB1D

gpg --keyserver keys.openpgp.org --recv-keys BCB054E548A093056A8BAE91F8809A14954ACB1D

Second, make sure you have downloaded the Installation File (Windows: .exe, Mac: .dmg) and PGP Signature File (.asc).

Start verification:

gpg --verify <Signature File> <Installation File>