A Bittrex API wrapper in Scala.
implicit val actorSystem = ActorSystem("main")
implicit val executor: ExecutionContext = actorSystem.dispatcher
implicit val materializer: ActorMaterializer = ActorMaterializer()
// your api keys
val apikey = "x...x"
val secret = "x...x"
val authorization = Auth(apikey, secret)
val client = new BittrexClient()
val futureBalance = client.accountGetBalance(Auth(" ", " "), currency)
val response = Await.result(futureBalance, 5 second)
Replace your own API keys and mod the tests to your environment.
This project is licensed under the MIT License - see the LICENSE.md file for details
- Hat tip to anyone who's code was used
- Inspiration my Dog!