0.0
No commit activity in last 3 years
No release in over 3 years
A simple JSON-RPC2 client dedicated for YOLOdice.com API.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.0.10
>= 1.9.18, ~> 1.9
 Project Readme

YOLOdice API Client for Ruby

YOLOdice is a simple online Bitcoin game you can play against the house. The game relies on a pseudorandom number generator that returns bet results used to determine if bets placed by players win or lose.

This Ruby library contains a simple client that connects to the YOLOdice API endpoint:

  • client connects over secure SSL over TCP transport layer,
  • supports authentication,
  • handles any server-side methods via method_missing mechanism.

Additional resources:

Installation

gem install yolodice-client

Usage

Require the gem in your scripts:

require 'yolodice_client'

Generating API keys

YOLOdice API requires authentication for most of it's methods. A Bitcoin key/address will be required to setup the API key and authenticate. Here is one way to do this:

  1. Generate an Bitcoin public and private key:

    require 'bitcoin'
    
    btc_key = Bitcoin::Key.generate
    auth_key = btc_key.to_base58  # this is your secret code, store it in a secure place
    auth_addr = btc_key.addr      # paste this in your YD settings as a new key
  2. Go to YOLOdice account Settings, create a new key and paste the auth_addr generated above. Set permissions as you wish.

  3. Use auth_key in your code to authenticate.

Just a quick note — this address is used ONLY to authenticate. No coins will be ever sent to it.

Connecting

yd = YolodiceClient.new
yd.connect
yd.authenticate auth_key

It's important to authenticate immediately after connecting. Otherwise the connection will be closed by the server.

The client automatically sends a ping requests to the server every 30 seconds to prevent the connection from timing out.

Logging and debugging

To preview the actuall messages sent back and forth you could provide your own logger object and set log level to DEBUG like this:

yd = YolodiceClient.new
logger = Logger.new STDERR
logger.level = Logger::DEBUG
yd.logger = logger

yd.connect
yd.authenticate auth_key

This would result in the output similar to this:

DEBUG -- : Connecting to api.yolodice.dev:4444 over SSL
INFO  -- : Connected to api.yolodice.dev:4444
DEBUG -- : Listening thread started
DEBUG -- : Pinging thread started
DEBUG -- : Calling remote method generate_auth_challenge()
DEBUG -- : >>> {"id":1,"method":"generate_auth_challenge"}
DEBUG -- : <<< {"id":1,"result":"yd_login_26vEyvUUdgUy"}

DEBUG -- : Calling remote method auth_by_address({:address=>"n3kmufwdR3Zzgk3k6NYeeLBxB9SpHKe5Tc", :signature=>"IB5ITZHQZoApdXhUMGFFZ9AG4OtTw85jdaPMSVYNpOayEAG5LK9bsPhtCjwPEjDy/YDHqKk6gf1+aLzg0B63Qfk="})
DEBUG -- : >>> {"id":2,"method":"auth_by_address","params":{"address":"n3kmufwdR3Zzgk3k6NYeeLBxB9SpHKe5Tc","signature":"IB5ITZHQZoApdXhUMGFFZ9AG4OtTw85jdaPMSVYNpOayEAG5LK9bsPhtCjwPEjDy/YDHqKk6gf1+aLzg0B63Qfk="}}
DEBUG -- : <<< {"id":2,"result":{"id":1,"name":"sdafasfuiafu","created_at":1470085899.0356,"roles":["admin"]}}

Conventions, return values, errors

By default whenever any Bitcoin amount is sent or received from the server, it is passed as an Integer with the amount of satoshis. Using this convention 1 BTC would be represented as an integer value or 100_000_000.

Whenever server responds with an Object, this client returns a Hash with keys being Strings.

There are two error classes:

  • YolodiceClient::Error that inherits from StandardError and is used for errors thrown by the client itself,
  • YolodiceClient::RemoteError that inherits from StandardError that is used to pass errors from the remote server,
  • YolodiceClient::ConnectionCloserError that inherits from StandardError that is thrown when connection is closed,
  • any errors from underlaying TCPSocket or SSLSocket are passed through.

RemoteError has two extra attributes: code and data that are mapped to values in the error object returned from the server.

If you want to handle connection issues within your app, you could rescue YolodiceClient::ConnectionCloserError, TCPSocket and SSLSocket errors and try #connect and #authenticate on error.

Helper methods

.satoshi_to_btc(v)

Converts an amount value from satoshis (integer) to bitcoin (float).

YolodiceClient.satoshi_to_btc(10_000)
# => 0.0001

.btc_to_satoshi(v)

Converts an amount value from bitcoin (float) to satoshi (integer).

YolodiceClient.btc_to_satoshi(0.12312312)
# => 12312312

.target_from_multiplier(m)

It calculates target value given the multiplier for the bet. If you want to find our the target that corresponds e.g. to multiplier 4, try this:

target = YolodiceClient.target_from_multiplier(4)
# => 247500

You can then use the target as an attribute to API method create_bet.

.target_from_probability(p)

It calculates target value given the win probability. Note: probability is a value ranged from 0 (0%) to 1 (100%). To find target that corresponds to win probability of 50% do this:

target = YolodiceClient.target_from_probability(0.5)
# => 500000

An example

Here is a script that connects to the server, authenticates, fetches user data, rolls a few 50% chance bets and reads user data again (make sure to use your own credential):

require 'yolodice_client'
require 'pp'

auth_key = 'cPFVHENWNjs5UKNXXynDSWiRkBEph8hcrjHKkXK5SW9QHxx7i4jC'
yd = YolodiceClient.new
yd.connect
user = yd.authenticate auth_key
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."
10.times do
  b = yd.create_bet attrs: {amount: 100, range: 'lo', target: 500000}
  puts "Bet profit: #{b['profit']}"
end
user_data = yd.read_user_data selector: {id: user['id']}
puts "Your account balance is: #{user_data['balance']} satoshis."

Even more examples

We have created a new Github repository with Ruby script examples to get you started. If you are looking for inspiration, check this out: https://github.com/ethan-nx/yolodice-examples.