Decentralized Notary App using Proxima-X SDK.
- Java 1.8
- JFoenix
- Proxima-X light weight node (written in Go)
Clone the repository
// For collaborators only.
git clone https://github.com/alvin-reyes/proximax-notaryapp.git
Install Jfoenix SceneBuilder
Download the Proxima-X Java SDK JAR and NEM Transaction Monitor Tool. Import them on your local maven repository
mvn install:install-file -DgroupId=io.nem.xpx -DartifactId=xpx-java-sdk -Dversion=1.0.0 -Dpackaging=jar -Dfile=lib/xpx-java-sdk-1.0.0-jar-with-dependencies.jar
mvn install:install-file -DgroupId=io.nem -DartifactId=nem-transaction-monitor -Dversion=0.0.1-SNAPSHOT -Dpackaging=jar -Dfile=lib/nem-transaction-monitor-0.0.1-SNAPSHOT-jar-with-dependencies.jar
Build Project
mvn clean install
The application relies on the proximax light weight node. When the application is run, the daemon process will also run on the background.
Alvin P. Reyes