cryptoexchange 0.10.1 → 0.10.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4e723deba9b36bead7e75fb8cc9c8c3cc17f095b
|
4
|
+
data.tar.gz: 236767ed853c1cb6ce7bd3eb1339157b635685b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d2306a293f5d65551859f2a46b4f4491369f72cce39ab2e14e7b3af70a9e3aa9d47a42dd6a00b3f967b0f24b70c0c76cd32fcd04c5223920e79c9f85e29e20c2
|
7
|
+
data.tar.gz: 9584e455b767c04226817a234c4e47c84036df3f069d685ce594be92ec0fa9c0718b3999969d654d47208d313cdc5ae04c4f9d8e70ffa0625cc47fcf9b7682d2
|
@@ -16,7 +16,15 @@ module Cryptoexchange::Exchanges
|
|
16
16
|
def ticker_url(market_pair)
|
17
17
|
base = market_pair.base.downcase
|
18
18
|
target = market_pair.target.downcase
|
19
|
-
"#{
|
19
|
+
"#{api_url(target)}/ticker.do?symbol=#{base}_#{target}"
|
20
|
+
end
|
21
|
+
|
22
|
+
def api_url(target)
|
23
|
+
if target == 'cny'
|
24
|
+
Cryptoexchange::Exchanges::Okcoin::Market::CN_API_URL
|
25
|
+
else
|
26
|
+
Cryptoexchange::Exchanges::Okcoin::Market::INT_API_URL
|
27
|
+
end
|
20
28
|
end
|
21
29
|
|
22
30
|
def adapt(output, market_pair)
|