ubirch / ubirch-notary-service   0.3.3

Apache License 2.0 GitHub

ubirch blockchain anchoring service

Scala versions: 2.11

ubirch Notary Service

General Information

This REST service allows us to notarize data using the Bitcoin Blockchain. The REST API is documented here: REST API with spray.

Scala Dependencies & Configs

model

resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"))
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "model" % "0.3.4-SNAPSHOT"
)

core

resolvers ++= Seq(
  Resolver.sonatypeRepo("snapshots"),
  "RoundEights" at "http://maven.spikemark.net/roundeights" // Hasher
)
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "core" % "0.3.4-SNAPSHOT"
)

server

resolvers ++= Seq(Resolver.sonatypeRepo("snapshots"))
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "server" % "0.3.4-SNAPSHOT"
)

client

resolvers ++= Seq(
  Resolver.sonatypeRepo("snapshots"),
  Resolver.bintrayRepo("hseeberger", "maven"), // Seeberger Json
  Resolver.bintrayRepo("rick-beton", "maven"), // BeeClient
  "RoundEights" at "http://maven.spikemark.net/roundeights" // Hasher
)
libraryDependencies ++= Seq(
  "com.ubirch.notary" %% "client" % "0.3.4-SNAPSHOT"
)

You may configure which NotaryService the client calls by adding the test server to your config:

notaryService {
  client {
    url = "http://notary-dev.api.ubirch.com:8080/v1/notaryService/notarize"
  }
}

Release History

0.3.4 (tbd)

  • tbd

0.3.3 (2017-07-19)

  • update docker related code

0.3.1 (2017-02-28)

  • fixed assembly bug by removing a conflicting logging dependency

0.3.0 (2017-02-28)

  • update scalatest from 3.0.0 to 3.0.1
  • improved documentation: rest-spray.md
  • added field "txHashLink" to /notarize response

0.2.7 (2017-02-16)

  • upgrade to Akka 2.4.17

0.2.6 (2017-02-07)

  • update dependency: "com.ubirch.util:json-auto-convert" from 0.1 to 0.3.2
  • update json4s dependencies from 3.4.0 to 3.4.2
  • update dependency: "com.ubirch.util:crypto" from 0.2 to 0.3.3

0.2.5 (2016-11-18)

  • changed log imports to: com.typesafe.scalalogging.slf4j.StrictLogging
  • update logging dependencies to our current standard set:
lazy val scalaLogging = Seq(
  "org.slf4j" % "slf4j-api" % "1.7.21",
  "com.typesafe.scala-logging" %% "scala-logging-slf4j" % "2.1.2" exclude("org.slf4j", "slf4j-api"),
  "com.typesafe.scala-logging" %% "scala-logging" % "3.5.0" exclude("org.slf4j", "slf4j-api"),
  "ch.qos.logback" % "logback-core" % "1.1.7",
  "ch.qos.logback" % "logback-classic" % "1.1.7"
)

0.2.4 (2016-11-14)

  • use StrictLogging instead of LazyLogging
  • update dependency com.typesafe.scala-logging:scala-logging: 3.4.0 -> 3.5.0

0.2.3 (2016-11-01)

  • add Dockerfile generation
  • update to sbt 0.13.12

0.2.2 (2016-11-01)

  • added Tor Support
  • refactored module structure to conform with our coding conventions

Create Docker Image

./goBuild assembly && ./goBuild containerbuild

Links

A list of links that helped us with the OP_RETURN message:

Faucets: