class Cryptoexchange::Exchanges::Bitflyer::Services::Pairs

Constants

PAIRS_URL

Public Instance Methods

adapt(output) click to toggle source
# File lib/cryptoexchange/exchanges/bitflyer/services/pairs.rb, line 12
def adapt(output)
  market_pairs = []
  output.each do |value|

    product_code = value['product_code']

    if product_code =~ /\A[A-Z]{3}_[A-Z]{3}\z/
      base, target = product_code.split('_')
      market_pairs << Cryptoexchange::Models::MarketPair.new(
                        base: base,
                        target: target,
                        market: Bitflyer::Market::NAME
                      )
    end
  end

  market_pairs
end
fetch() click to toggle source
Calls superclass method Cryptoexchange::Services::Pairs#fetch
# File lib/cryptoexchange/exchanges/bitflyer/services/pairs.rb, line 7
def fetch
  output = super
  adapt(output)
end