Class: Cryptoexchange::Exchanges::Idax::Services::Pairs

Inherits:
Services::Pairs show all
Defined in:
lib/cryptoexchange/exchanges/idax/services/pairs.rb

Constant Summary collapse

PAIRS_URL =
"#{Cryptoexchange::Exchanges::Idax::Market::API_URL}/GetAllOpenMarkets"
HTTP_METHOD =
'POST'

Constants inherited from Services::Pairs

Services::Pairs::MARKET, Services::Pairs::POST_PARAMS

Instance Method Summary collapse

Methods inherited from Services::Pairs

#default_override_exist?, #default_override_path, #exchange_class, #fetch, #fetch_via_api_using_post, #fetch_via_override, #http_get, #http_post, #user_override_exist?, #user_override_path

Instance Method Details

#adapt(output) ⇒ Object



13
14
15
16
17
18
19
20
21
# File 'lib/cryptoexchange/exchanges/idax/services/pairs.rb', line 13

def adapt(output)
  output['data'].map do |market|
    Cryptoexchange::Models::MarketPair.new({
      base: market['baseCode'],
      target: market['quoteCode'],
      market: Idax::Market::NAME
    })
  end
end

#fetch_via_apiObject



8
9
10
11
# File 'lib/cryptoexchange/exchanges/idax/services/pairs.rb', line 8

def fetch_via_api
  output = super
  adapt(output)
end