All Downloads are FREE. Search and download functionalities are using the official Maven repository.

sss.openstar.tools.DebitWalletToIdentity.scala Maven / Gradle / Ivy

package sss.openstar.tools

import us.monoid.web.Resty


/**
  * Created by alan on 6/7/16.
  */
object DebitWalletToIdentity {

  def main(args: Array[String]): Unit = {

    if(args.length == 3) {
      val ledgerUrl = args(0)
      val identity = args(1)
      val amount = args(2)

      val result = new Resty().text(s"$ledgerUrl/debit?to=$identity&amount=$amount")
      println(result)

    } else println("Provide the url to debit from and the identity to credit and the amount.")
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy