Module: Bitflyer

Defined in:
lib/bitflyer.rb,
lib/bitflyer/http.rb,
lib/bitflyer/version.rb,
lib/bitflyer/realtime.rb,
lib/bitflyer/http/public.rb,
lib/bitflyer/http/private.rb,
lib/bitflyer/realtime/client.rb,
lib/bitflyer/realtime/websocket.rb

Defined Under Namespace

Modules: HTTP, Realtime

Constant Summary collapse

VERSION =
'1.1.0'

Class Method Summary collapse

Class Method Details

.http_private_client(key, secret) ⇒ Object



16
17
18
# File 'lib/bitflyer.rb', line 16

def http_private_client(key, secret)
  Bitflyer::HTTP::Private::Client.new(key, secret)
end

.http_public_clientObject



12
13
14
# File 'lib/bitflyer.rb', line 12

def http_public_client
  Bitflyer::HTTP::Public::Client.new
end

.realtime_clientObject



8
9
10
# File 'lib/bitflyer.rb', line 8

def realtime_client
  Bitflyer::Realtime::Client.new
end