8000 GitHub - agentjacker/hathor-wallet: Hathor Official Wallet for Desktop
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

agentjacker/hathor-wallet

 
 

Repository files navigation

Hathor Wallet

Welcome to Hathor Desktop Wallet. To view the source code of the project access Github.

Architecture

The wallet is developed using Javascript with React. We use Electron to generate native desktop apps from it.

Download

You can download the newest version of the wallet for each specific platform from the Releases page.

Warning Message for Windows:

We are finishing the process of acquiring the certificates for Windows. While we don't get it you may see a warning message when opening the wallet.

Warning Windows

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.

Screenshots

The basic view of the wallet. Note that different types of tokens are made possible in the Hathor Network. On the left hand side we see both a HTR tab and a MTK tab, for the Hathor token, and a different, ERC-20 like, token.
Wallet Home

Sending tokens.
Send Tokens

The wallet includes a block and transaction explorer.
Explorer

A transaction is displayed.
Transaction Detail

For development

Prerequisites

  • Install node v14

To Install

npm install

To Run

npm start

It will start running in the browser in http://localhost:3000

NOTE: to use Hathor Wallet with Ledger, you need to run it in Electron.

NOTE: use the electron wallet for a more complete experience.

Quick start to Electron

Run the electron besides the react app. Open a new instance of the terminal and run the following command:

npm run electron-dev

If you get some error like this error while loading shared libraries: libxshmfence.so.1: cannot open shared object file: No such file or directory refer to the throubleshooting section.

To Build

npm run build and it will create a folder build with the files to use

Server

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.

Documentation

To generate a html page with the documentation from the code comments run:

npm run generate-doc

It will generate a index.html file in out/index.html

Run Electron

Refer to ELECTRON.md

Sentry

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.

DSN

On public/constants.js we have a default Sentry DSN. To override it simply set the environment variable SENTRY_DSN.

Source maps

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.

Troubleshooting

When building, if you get the following error message:

FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory

Then, you can increase your memory limit running:

export NODE_OPTIONS=--max_old_space_size=4096

WSL (Windows Subsystem for Linux)

  • Make sure you have the vesion 2
    wsl -l -v
    
  • Make sure to install the WSL driver for your GPU, see at Prerequisites
  • Make sure to update the WSL after install the GPU driver, see at Existing WSL Install
  • Once the WSL is updated you are ready to go

If you still can't run, see this article.

WSL Ubuntu 18 distro

Run the following command to install necessary packages:

sudo apt install libnss3-dev libgdk-pixbuf2.0-dev libgtk-3-dev libxss-dev libasound2

WSL Debian distro

Run the following command to install necessary packages:

sudo apt install libnss3-dev libgdk-pixbuf2.0-dev libgtk-3-dev libxss-dev libasound2 libusb-1.0-0

TODO

  • 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.

i18n

We use the ttag lib. Check out the docs here.

Run make update_pot to update the pot file (locale/texts.pot). This file has all strings to be translated in the app.

Run msgmerge pt-br/texts.po texts.pot -o pt-br/texts.po to merge a pot file with a po file. This will add the new strings to be transalted and remove the deprecated ones. Any translation marked with ; fuzzy comment must be reviewed.

Finally, run make i18n to compi 5CA2 le all po files to json files. You can use make check_po to check for problems in translations.

License

Code released under the MIT license.

Copyright 2019 Hathor Labs.

About

Hathor Official Wallet for Desktop

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 97.1%
  • SCSS 2.1%
  • Other 0.8%
0