Class: Cryptoexchange::Exchanges::BxThailand::Services::Pairs

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

Constant Summary collapse

PAIRS_URL =
"#{Cryptoexchange::Exchanges::BxThailand::Market::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

#adapt(output) ⇒ Object



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

def adapt(output)
  output.values.map do |pair|
    Cryptoexchange::Models::MarketPair.new(
      base: pair['secondary_currency'],
      target: pair['primary_currency'],
      market: BxThailand::Market::NAME
    )
  end
end

#fetchObject



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

def fetch
  output = super
  adapt(output)
end