Class: Cryptoexchange::Exchanges::Coinrail::Services::Pairs

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

Constant Summary collapse

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



20
21
22
23
24
25
26
27
28
29
30
31
32
# File 'lib/cryptoexchange/exchanges/coinrail/services/pairs.rb', line 20

def adapt(output)
  pairs = []
  output.map do |pair|
    base = pair["ce_name"]
    target = pair["cs_name"]
    pairs << Cryptoexchange::Models::MarketPair.new(
                      base: base,
                      target: target,
                      market: Coinrail::Market::NAME
                    )
  end
pairs
end

#fetchObject



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

def fetch
  raw_output = super
  output = []
  raw_output.map do |market|
    if market[0] == "btc_market" || market[0] == "krw_market"
      market[1].each { |pair|
        output.push(pair)
      }
    end
  end
  adapt(output)
end