Class: Cryptoexchange::Exchanges::Trademn::Services::Pairs
Constant Summary
collapse
- PAIRS_URL =
"#{Cryptoexchange::Exchanges::Trademn::Market::API_URL}/pairs"
- TARGETS =
['BTC', 'MNT', 'USD']
Services::Pairs::HTTP_METHOD, Services::Pairs::MARKET, Services::Pairs::POST_PARAMS
Instance Method Summary
collapse
#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
22
23
24
25
|
# File 'lib/cryptoexchange/exchanges/trademn/services/pairs.rb', line 13
def adapt(output)
market_pairs = []
output.each do |pair|
base, target = strip_pairs(pair)
next unless base && target
market_pairs << Cryptoexchange::Models::MarketPair.new(
base: base,
target: target,
market: Trademn::Market::NAME
)
end
market_pairs
end
|
#fetch ⇒ Object
8
9
10
11
|
# File 'lib/cryptoexchange/exchanges/trademn/services/pairs.rb', line 8
def fetch
output = super
adapt(output['supported_pairs'])
end
|
#strip_pairs(pair_symbol) ⇒ Object
27
28
29
30
31
32
33
|
# File 'lib/cryptoexchange/exchanges/trademn/services/pairs.rb', line 27
def strip_pairs(pair_symbol)
TARGETS.include? pair_symbol[-3..-1]
base = pair_symbol[0..-4]
target = pair_symbol[-3..-1]
[base, target]
end
|