Skip to content

Latest commit

 

History

History
60 lines (41 loc) · 951 Bytes

README.md

File metadata and controls

60 lines (41 loc) · 951 Bytes

iroha-scala

Scala library for Hyperledger Iroha.

For end users

Add the following library dependency into your project:

libraryDependencies += "castleone" %% "iroha-akka" % "1.0.10"

For developers

Requirements

  • JDK8+ is required
  • integration tests require one or more Iroha nodes
  • a snapshot build of ed25519-sha3-java

Building dependencies

#!/bin/bash

mkdir ${HOME}/workspace
cd ${HOME}/workspace
git clone https://github.com/frgomes/ed25519-sha3-java
cd ed25519-sha3-java
git checkout RG0001-Code_review
./sbt publishLocal

Building iroha-scala

#!/bin/bash

mkdir ${HOME}/workspace
cd ${HOME}/workspace
git clone https://github.com/frgomes/iroha-scala
cd iroha-scala
git checkout RG0001-Code_review
./sbt compile

Unit tests

#!/bin/bash

cd ${HOME}/workspace/iroha-scala
$ ./sbt test

Integration tests

TBD