Class: Cryptoexchange::Exchanges::Bilaxy::Services::Pairs

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

Constant Summary collapse

PAIRS_URL =
"#{Cryptoexchange::Exchanges::Bilaxy::Market::PAIRS_API_URL}"

Constants inherited from Services::Pairs

Services::Pairs::HTTP_METHOD, 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_via_api, #fetch_via_api_using_post, #fetch_via_override, #http_get, #http_post, #user_override_exist?, #user_override_path

Instance Method Details

#fetchObject



7
8
9
10
11
12
13
14
15
16
17
18
19
# File 'lib/cryptoexchange/exchanges/bilaxy/services/pairs.rb', line 7

def fetch
  output = super
  output['dataMap'].map do |target, symbol|
    symbol.map do |base_info|
      Cryptoexchange::Models::Bilaxy::MarketPair.new(
        base:   base_info['fShortName'],
        target: target,
        id:     base_info['fid'],
        market: Bilaxy::Market::NAME
      )
    end
  end.flatten
end