Skip to content

This repository contains Metahash wallet C++ source code.

Notifications You must be signed in to change notification settings

metahashorg/metagate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MetaHashGate

This repository contains Metahash wallet c++ source code. Wallet supports following currencies: MHC, BTC, ETC.

Get the source code

Clone the repository by:

git clone https://github.com/metahashorg/metagate

Build

Current Qt version - 10.1. For Windows, Qt 10.1 with visual studio 2015 compiler. Detailed instructions for the project build on linux, mac or win can be found in the deploy folder.

Api to connect with javascript

When Q_INVOKABLE qt-function returns some result, in javascript it must be got via callback, e.g.:

mainWindow.openFolderDialog(beginPath, caption, function(returnValue) {
alert(returnValue);
});