Welcome to Hathor Light Wallet. To view the source code of the project access Github.
You can download the newest version of the wallet for each specific platform.
- Download for macOS
- Download for Windows
- Download for Linux (deb)
- Download for Linux (AppImage)
We are almost finishing the process of acquiring the certificates for macOS and Windows. While we don't get it you may see a warning message when opening the wallet.
To be able to run you need to open Security & Privacy, click on the tab "General" and you will see a message "Hathor Wallet was blocked from opening because it is not from an identified developer.". So you just need to click on the button "Open Anyway" to use our wallet. For further information, see macOS User Guide - Open a Mac app from an unidentified developer
This screen will show a warning, so you need to click on 'More info'. Another screen will appear, then just click the button 'Run anyway' to start the wallet.
npm install
npm start
and it will start running in the browser in http://localhost:3000
npm run buil
and it will create a folder build with the files to use
By default the wallet will connect to the server selected as the DEFAULT_SERVER
in the constants file (src/constants.js
).
You can change this anytime in the 'Change Server' screen inside the wallet.
To generate a html page with the documentation from the code comments run:
jsdoc -c jsdoc.json -r src/. README.md
and it will generate a index.html
file in out/index.html
npm run build
npm run electron
npm run electron-pack
If you have an error building Error: Python executable "/path/to/python" is v3.6.5, which is not supported by gyp.
Just run npm config set python /usr/bin/python
and try again
Sentry is a error tracking tool, that allow us to receive error data from clients - it will be disabled on stable versions of the wallet.
On public/constants.js
we have a default Sentry DSN.
To override it simply set the environment variable SENTRY_DSN
.
To allow stack traces to be mapped to source code, Sentry needs the source maps.
To upload the source maps, create a .sentryclirc
with the format:
[defaults]
url=https://sentry.io/
org=<ORGANIZATION_NAME>
project=<PROJECT_NAME>
[auth]
token=<CLI_API_TOKEN>
You can find more information about the configuration file and its fields here.
After configuring it, just run the upload_source_maps.sh
script to upload the source maps.
WARNING: Please note that this will override all the source maps for the current sentry release.
The sentry release used is the version
field in the package.json
file.
So in order to not break any released source maps, only run the script after bumping package.json
to a new version.
For test purposes use *-beta
versions or identifiers that will not colide with semantic versioning.
- The algorithm to automatically choose the unspent transactions when sending tokens is naive. For now we do not consider any anonymity factor.
- The addresses shared with the user and the ones used in change outputs are generated by the same chain in the HD Wallet. We don't separate internal and external addresses.
Code released under the MIT license.
Copyright 2019 Hathor Labs.