项目作者: theQRL

项目描述 :
QRL Wallet
高级语言: JavaScript
项目地址: git://github.com/theQRL/qrl-wallet.git
创建时间: 2017-09-07T19:47:07Z
项目社区:https://github.com/theQRL/qrl-wallet

开源协议:MIT License

下载


Build Status
Codacy Badge
Known Vulnerabilities
MIT licensed

qrl-wallet | wallet.theqrl.org

This is the QRL wallet application developed by The QRL team, and hosted on wallet.theqrl.org

It provides both web and desktop interfaces using Meteor, Semantic UI, NodeJS and Electron.

All secure XMSS operations are run in a web assembly compiled version of qrllib locally in your browser or desktop application. Keys stay in the memory space of the XMSS object, which is destroyed the moment you close the wallet, browser window or desktop application.

Development Dependencies

The following dependencies are required for a functional local development environment.

NodeJS v14

We recommend using nvm to manage NodeJS versions and using the version of NodeJS as specified in the .nvmrc file

Meteor

@theqrl/electrify-qrl"">@theqrl/electrify-qrl

  1. npm install -g @theqrl/electrify-qrl

node-gyp

  1. npm install -g node-gyp

node-gyp issues can generally be solved with updating npm (npm i -g npm) and rebuilding modules (npm rebuild)

Linux only: libudev-dev, libusb-dev and libusb-1.0-0-dev

  1. sudo apt-get install libudev-dev libusb-dev libusb-1.0-0-dev

Redhat Linux: electron-installer-redhat installed globally

npm i -g electron-installer-redhat

Debian/Ubuntu Linux: electron-installer-debian installed globally

npm i -g electron-installer-debian

Mac only: create-dmg

  1. npm install --global create-dmg

Windows Only - Build Tools for Visual Studio 2017

Windows Only - Wix Toolset Build Tools and electron-wix-msi-qrl:

  1. npm install -g electron-wix-msi-qrl

Install qrl-wallet

  1. git clone https://github.com/theQRL/qrl-wallet.git
  2. cd qrl-wallet
  3. npm install

Run QRL Wallet (web wallet)

  1. meteor

A locally running wallet will be available at http://localhost:3000

Run Tests

  1. meteor test --driver-package meteortesting:mocha

Run QRL Wallet (desktop client)

  1. npm run electron

Package Electron Client

Ensure the node, mongo and mongod for the platform being built for are in the .electrify/bin directory (these are found in .meteor/local/dev_bundle after a successful local run)

  1. Clean the dist folder

MacOS and Linux

  1. npm run cleanDist

Windows

  1. npm run win:remove_dist
  2. npm run win:create_dist
  1. Package Electron App

MacOS, Linux and Windows

  1. npm run releaseready
  2. npm run build

Build Installer

  1. npm run installer

If you have issues, the QRL Discord is a good place to ask for help.