You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wow-lite-wallet/INSTALL.md

40 lines
711 B

6 years ago
## Compile
Requirements:
- Node v8
- Latest Wownero (CLI) + `git apply light_diff.patch`
#### Electron
``` bash
# install dependencies
npm install
# serve with hot reload at localhost:9080
npm run dev
```
If `npm run dev` works, you can install a custom version of `wownero-wallet-cli`
#### wownero-wallet-cli :star2:
```
4 years ago
git clone https://git.wownero.com/wownero/wownero.git
6 years ago
cd wownero
git checkout <latest version here>
git apply light_patch.diff
make -j4
```
Use `light_patch.diff` that's included in this repository. Move resulting binary into the resources folder:
```
cp build/release/bin/wownero-wallet-cli wowlite/resources/linux/bin/wowlite
6 years ago
```
Build the light wallet:
```
npm run build
```