class Cryptoexchange::Exchanges::Coinhouse::Services::Pairs
Constants
- PAIRS_URL
- TARGET
Public Instance Methods
adapt(output)
click to toggle source
# File lib/cryptoexchange/exchanges/coinhouse/services/pairs.rb, line 13 def adapt(output) market_pairs = [] output.each_key do |pair| base, target = strip_pairs(pair) next unless base && target market_pairs << Cryptoexchange::Models::MarketPair.new( base: base, target: target, market: Coinhouse::Market::NAME ) end market_pairs end
fetch()
click to toggle source
Calls superclass method
Cryptoexchange::Services::Pairs#fetch
# File lib/cryptoexchange/exchanges/coinhouse/services/pairs.rb, line 8 def fetch output = super adapt(output) end
strip_pairs(pair_symbol)
click to toggle source
# File lib/cryptoexchange/exchanges/coinhouse/services/pairs.rb, line 27 def strip_pairs(pair_symbol) separator = /(USDT|BTC|BCH|ETH)\z/i =~ pair_symbol base = pair_symbol[0..separator - 1] target = pair_symbol[separator..-1] [base, target] end