currency-rate 1.2.0 → 1.4.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (81) hide show
  1. checksums.yaml +5 -5
  2. data/Gemfile +2 -1
  3. data/README.md +8 -0
  4. data/Rakefile +29 -0
  5. data/VERSION +1 -1
  6. data/api_keys.yml.sample +3 -0
  7. data/bin/rake +29 -0
  8. data/bin/rspec +29 -0
  9. data/currency-rate.gemspec +46 -35
  10. data/lib/adapter.rb +4 -3
  11. data/lib/adapters/crypto/binance_adapter.rb +42 -0
  12. data/lib/adapters/crypto/bitfinex_adapter.rb +29 -6
  13. data/lib/adapters/crypto/bitpay_adapter.rb +17 -2
  14. data/lib/adapters/crypto/bitstamp_adapter.rb +9 -8
  15. data/lib/adapters/crypto/coinbase_adapter.rb +20 -4
  16. data/lib/adapters/crypto/exmo_adapter.rb +27 -0
  17. data/lib/adapters/crypto/kraken_adapter.rb +22 -11
  18. data/lib/adapters/crypto/localbitcoins_adapter.rb +13 -2
  19. data/lib/adapters/fiat/currency_layer_adapter.rb +14 -12
  20. data/lib/adapters/fiat/fixer_adapter.rb +4 -2
  21. data/lib/adapters/fiat/forge_adapter.rb +5 -3
  22. data/lib/adapters/fiat/free_forex_adapter.rb +32 -0
  23. data/lib/configuration.rb +12 -8
  24. data/lib/currency_rate.rb +16 -7
  25. data/lib/fetcher.rb +28 -41
  26. data/lib/storage/file_storage.rb +2 -2
  27. data/lib/synchronizer.rb +31 -17
  28. data/spec/fixtures/adapters/binance_rates.yml +993 -0
  29. data/spec/fixtures/adapters/bitfinex_rates.yml +4050 -0
  30. data/spec/fixtures/adapters/{bitpay_adapter.yml → bitpay_rates.yml} +179 -175
  31. data/spec/fixtures/adapters/bitstamp_rates.yml +61 -0
  32. data/spec/fixtures/adapters/{btc_china_adapter.yml → btc_china_rates.yml} +0 -0
  33. data/spec/fixtures/adapters/{btce_adapter.yml → btce_rates.yml} +0 -0
  34. data/spec/fixtures/adapters/coinbase_rates.yml +181 -0
  35. data/spec/fixtures/adapters/{currency_layer_adapter.yml → currency_layer_rates.yml} +0 -0
  36. data/spec/fixtures/adapters/exmo_rates.yml +1251 -0
  37. data/spec/fixtures/adapters/fixer_rates.yml +174 -0
  38. data/spec/fixtures/adapters/{forge_adapter.yml → forge_rates.yml} +0 -0
  39. data/spec/fixtures/adapters/free_forex_rates.yml +59 -0
  40. data/spec/fixtures/adapters/{huobi_adapter.yml → huobi_rates.yml} +0 -0
  41. data/spec/fixtures/adapters/kraken_rates.yml +507 -0
  42. data/spec/fixtures/adapters/localbitcoins_rates.yml +493 -0
  43. data/spec/fixtures/adapters/normalized/binance_rates.yml +134 -0
  44. data/spec/fixtures/adapters/normalized/bitfinex_rates.yml +95 -0
  45. data/spec/fixtures/adapters/normalized/bitpay_rates.yml +164 -0
  46. data/spec/fixtures/adapters/normalized/bitstamp_rates.yml +9 -0
  47. data/spec/fixtures/adapters/normalized/{btc_china_adapter.yml → btc_china_rates.yml} +0 -0
  48. data/spec/fixtures/adapters/normalized/{btce_adapter.yml → btce_rates.yml} +0 -0
  49. data/spec/fixtures/adapters/normalized/coinbase_rates.yml +179 -0
  50. data/spec/fixtures/adapters/normalized/{currency_layer_adapter.yml → currency_layer_rates.yml} +0 -0
  51. data/spec/fixtures/adapters/normalized/exmo_rates.yml +42 -0
  52. data/spec/fixtures/adapters/normalized/fixer_rates.yml +170 -0
  53. data/spec/fixtures/adapters/normalized/{forge_adapter.yml → forge_rates.yml} +0 -0
  54. data/spec/fixtures/adapters/normalized/free_forex_rates.yml +16 -0
  55. data/spec/fixtures/adapters/normalized/{huobi_adapter.yml → huobi_rates.yml} +0 -0
  56. data/spec/fixtures/adapters/normalized/kraken_rates.yml +21 -0
  57. data/spec/fixtures/adapters/normalized/localbitcoins_rates.yml +73 -0
  58. data/spec/fixtures/adapters/normalized/{okcoin_adapter.yml → okcoin_rates.yml} +0 -0
  59. data/spec/fixtures/adapters/normalized/{yahoo_adapter.yml → yahoo_rates.yml} +0 -0
  60. data/spec/fixtures/adapters/{okcoin_adapter.yml → okcoin_rates.yml} +0 -0
  61. data/spec/fixtures/adapters/{yahoo_adapter.yml → yahoo_rates.yml} +0 -0
  62. data/spec/lib/adapters/crypto/binance_adapter_spec.rb +13 -0
  63. data/spec/lib/adapters/crypto/exmo_adapter_spec.rb +13 -0
  64. data/spec/lib/adapters/fiat/free_forex_adapter_spec.rb +13 -0
  65. data/spec/lib/fetcher_spec.rb +17 -49
  66. data/spec/lib/synchronizer_spec.rb +36 -2
  67. data/spec/spec_helper.rb +2 -2
  68. metadata +66 -35
  69. data/spec/fixtures/adapters/bitfinex_adapter.yml +0 -18
  70. data/spec/fixtures/adapters/bitstamp_adapter.yml +0 -30
  71. data/spec/fixtures/adapters/coinbase_adapter.yml +0 -680
  72. data/spec/fixtures/adapters/fixer_adapter.yml +0 -34
  73. data/spec/fixtures/adapters/kraken_adapter.yml +0 -124
  74. data/spec/fixtures/adapters/localbitcoins_adapter.yml +0 -381
  75. data/spec/fixtures/adapters/normalized/bitfinex_adapter.yml +0 -2
  76. data/spec/fixtures/adapters/normalized/bitpay_adapter.yml +0 -161
  77. data/spec/fixtures/adapters/normalized/bitstamp_adapter.yml +0 -3
  78. data/spec/fixtures/adapters/normalized/coinbase_adapter.yml +0 -680
  79. data/spec/fixtures/adapters/normalized/fixer_adapter.yml +0 -32
  80. data/spec/fixtures/adapters/normalized/kraken_adapter.yml +0 -4
  81. data/spec/fixtures/adapters/normalized/localbitcoins_adapter.yml +0 -57
@@ -4,17 +4,51 @@ RSpec.describe CurrencyRate::Synchronizer do
4
4
  before do
5
5
  @storage_double = double("storage")
6
6
  @synchronizer = CurrencyRate::Synchronizer.new(storage: @storage_double)
7
+
8
+ @kraken_data = normalized_data_for :kraken
9
+ @crypto_adapters = ["Kraken"]
10
+ allow(CurrencyRate::KrakenAdapter.instance).to receive(:fetch_rates).and_return(@kraken_data)
11
+ allow(CurrencyRate.configuration).to receive(:crypto_adapters).and_return(@crypto_adapters)
12
+
13
+ @yahoo_data = normalized_data_for :yahoo
14
+ @fiat_adapters = ["Yahoo"]
15
+ allow(CurrencyRate::YahooAdapter.instance).to receive(:fetch_rates).and_return(@yahoo_data)
16
+ allow(CurrencyRate.configuration).to receive(:fiat_adapters).and_return(@fiat_adapters)
17
+ end
18
+
19
+ describe "#sync_crypto!" do
20
+ it "saves crypto rates to given storage" do
21
+ expect(@storage_double).to receive(:write).with("kraken", @kraken_data)
22
+ @synchronizer.sync_crypto!
23
+ end
24
+
25
+ it "doesn't fetch fiat rates" do
26
+ expect(@storage_double).not_to receive(:write).with("yahoo", @yahoo_data)
27
+ @synchronizer.sync_crypto!
28
+ end
29
+ end
30
+
31
+ describe "#sync_fiat!" do
32
+ it "saves fiat rates to given storage" do
33
+ expect(@storage_double).to receive(:write).with("yahoo", @yahoo_data)
34
+ @synchronizer.sync_fiat!
35
+ end
36
+
37
+ it "doesn't fetch crypto rates" do
38
+ expect(@storage_double).not_to receive(:write).with("kraken", @kraken_data)
39
+ @synchronizer.sync_fiat!
40
+ end
7
41
  end
8
42
 
9
43
  describe "#sync!" do
10
44
  before do
11
45
  @kraken_data = normalized_data_for :kraken
12
- @crypto_adapters = ["KrakenAdapter"]
46
+ @crypto_adapters = ["Kraken"]
13
47
  allow(CurrencyRate::KrakenAdapter.instance).to receive(:fetch_rates).and_return(@kraken_data)
14
48
  allow(CurrencyRate.configuration).to receive(:crypto_adapters).and_return(@crypto_adapters)
15
49
 
16
50
  @yahoo_data = normalized_data_for :yahoo
17
- @fiat_adapters = ["YahooAdapter"]
51
+ @fiat_adapters = ["Yahoo"]
18
52
  allow(CurrencyRate::YahooAdapter.instance).to receive(:fetch_rates).and_return(@yahoo_data)
19
53
  allow(CurrencyRate.configuration).to receive(:fiat_adapters).and_return(@fiat_adapters)
20
54
  end
data/spec/spec_helper.rb CHANGED
@@ -7,11 +7,11 @@ require_relative "../lib/currency_rate"
7
7
  Dir[File.join CurrencyRate.root, "spec/support/**/*.rb"].each { |f| require f }
8
8
 
9
9
  def exchange_data_for(name)
10
- YAML.load_file File.join(CurrencyRate.root, "spec/fixtures/adapters/#{name}_adapter.yml")
10
+ YAML.load_file File.join(CurrencyRate.root, "spec/fixtures/adapters/#{name}_rates.yml")
11
11
  end
12
12
 
13
13
  def normalized_data_for(name)
14
- floating = YAML.load_file File.join(CurrencyRate.root, "spec/fixtures/adapters/normalized/#{name}_adapter.yml")
14
+ floating = YAML.load_file File.join(CurrencyRate.root, "spec/fixtures/adapters/normalized/#{name}_rates.yml")
15
15
  floating.each { |k, v| floating[k] = BigDecimal.new(v.to_s) if k != "anchor" }
16
16
  end
17
17
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: currency-rate
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Snitko
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-02-13 00:00:00.000000000 Z
11
+ date: 2018-12-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: http
@@ -24,6 +24,20 @@ dependencies:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: byebug
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: jeweler
29
43
  requirement: !ruby/object:Gem::Requirement
@@ -39,7 +53,7 @@ dependencies:
39
53
  - !ruby/object:Gem::Version
40
54
  version: 2.3.7
41
55
  - !ruby/object:Gem::Dependency
42
- name: rspec
56
+ name: rake
43
57
  requirement: !ruby/object:Gem::Requirement
44
58
  requirements:
45
59
  - - ">="
@@ -53,7 +67,7 @@ dependencies:
53
67
  - !ruby/object:Gem::Version
54
68
  version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
- name: webmock
70
+ name: rspec
57
71
  requirement: !ruby/object:Gem::Requirement
58
72
  requirements:
59
73
  - - ">="
@@ -67,7 +81,7 @@ dependencies:
67
81
  - !ruby/object:Gem::Version
68
82
  version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
- name: byebug
84
+ name: webmock
71
85
  requirement: !ruby/object:Gem::Requirement
72
86
  requirements:
73
87
  - - ">="
@@ -82,7 +96,9 @@ dependencies:
82
96
  version: '0'
83
97
  description: Fetches exchange rates from various sources and does the conversion
84
98
  email: roman.snitko@gmail.com
85
- executables: []
99
+ executables:
100
+ - rake
101
+ - rspec
86
102
  extensions: []
87
103
  extra_rdoc_files:
88
104
  - LICENSE.txt
@@ -95,14 +111,19 @@ files:
95
111
  - README.md
96
112
  - Rakefile
97
113
  - VERSION
114
+ - api_keys.yml.sample
115
+ - bin/rake
116
+ - bin/rspec
98
117
  - currency-rate.gemspec
99
118
  - lib/adapter.rb
119
+ - lib/adapters/crypto/binance_adapter.rb
100
120
  - lib/adapters/crypto/bitfinex_adapter.rb
101
121
  - lib/adapters/crypto/bitpay_adapter.rb
102
122
  - lib/adapters/crypto/bitstamp_adapter.rb
103
123
  - lib/adapters/crypto/btc_china_adapter.rb
104
124
  - lib/adapters/crypto/btc_e_adapter.rb
105
125
  - lib/adapters/crypto/coinbase_adapter.rb
126
+ - lib/adapters/crypto/exmo_adapter.rb
106
127
  - lib/adapters/crypto/huobi_adapter.rb
107
128
  - lib/adapters/crypto/kraken_adapter.rb
108
129
  - lib/adapters/crypto/localbitcoins_adapter.rb
@@ -110,6 +131,7 @@ files:
110
131
  - lib/adapters/fiat/currency_layer_adapter.rb
111
132
  - lib/adapters/fiat/fixer_adapter.rb
112
133
  - lib/adapters/fiat/forge_adapter.rb
134
+ - lib/adapters/fiat/free_forex_adapter.rb
113
135
  - lib/adapters/fiat/yahoo_adapter.rb
114
136
  - lib/configuration.rb
115
137
  - lib/currency_rate.rb
@@ -117,41 +139,49 @@ files:
117
139
  - lib/storage/file_storage.rb
118
140
  - lib/storage/serializers/yaml_serializer.rb
119
141
  - lib/synchronizer.rb
120
- - spec/fixtures/adapters/bitfinex_adapter.yml
121
- - spec/fixtures/adapters/bitpay_adapter.yml
122
- - spec/fixtures/adapters/bitstamp_adapter.yml
123
- - spec/fixtures/adapters/btc_china_adapter.yml
124
- - spec/fixtures/adapters/btce_adapter.yml
125
- - spec/fixtures/adapters/coinbase_adapter.yml
126
- - spec/fixtures/adapters/currency_layer_adapter.yml
127
- - spec/fixtures/adapters/fixer_adapter.yml
128
- - spec/fixtures/adapters/forge_adapter.yml
129
- - spec/fixtures/adapters/huobi_adapter.yml
130
- - spec/fixtures/adapters/kraken_adapter.yml
131
- - spec/fixtures/adapters/localbitcoins_adapter.yml
132
- - spec/fixtures/adapters/normalized/bitfinex_adapter.yml
133
- - spec/fixtures/adapters/normalized/bitpay_adapter.yml
134
- - spec/fixtures/adapters/normalized/bitstamp_adapter.yml
135
- - spec/fixtures/adapters/normalized/btc_china_adapter.yml
136
- - spec/fixtures/adapters/normalized/btce_adapter.yml
137
- - spec/fixtures/adapters/normalized/coinbase_adapter.yml
138
- - spec/fixtures/adapters/normalized/currency_layer_adapter.yml
139
- - spec/fixtures/adapters/normalized/fixer_adapter.yml
140
- - spec/fixtures/adapters/normalized/forge_adapter.yml
141
- - spec/fixtures/adapters/normalized/huobi_adapter.yml
142
- - spec/fixtures/adapters/normalized/kraken_adapter.yml
143
- - spec/fixtures/adapters/normalized/localbitcoins_adapter.yml
144
- - spec/fixtures/adapters/normalized/okcoin_adapter.yml
145
- - spec/fixtures/adapters/normalized/yahoo_adapter.yml
146
- - spec/fixtures/adapters/okcoin_adapter.yml
147
- - spec/fixtures/adapters/yahoo_adapter.yml
142
+ - spec/fixtures/adapters/binance_rates.yml
143
+ - spec/fixtures/adapters/bitfinex_rates.yml
144
+ - spec/fixtures/adapters/bitpay_rates.yml
145
+ - spec/fixtures/adapters/bitstamp_rates.yml
146
+ - spec/fixtures/adapters/btc_china_rates.yml
147
+ - spec/fixtures/adapters/btce_rates.yml
148
+ - spec/fixtures/adapters/coinbase_rates.yml
149
+ - spec/fixtures/adapters/currency_layer_rates.yml
150
+ - spec/fixtures/adapters/exmo_rates.yml
151
+ - spec/fixtures/adapters/fixer_rates.yml
152
+ - spec/fixtures/adapters/forge_rates.yml
153
+ - spec/fixtures/adapters/free_forex_rates.yml
154
+ - spec/fixtures/adapters/huobi_rates.yml
155
+ - spec/fixtures/adapters/kraken_rates.yml
156
+ - spec/fixtures/adapters/localbitcoins_rates.yml
157
+ - spec/fixtures/adapters/normalized/binance_rates.yml
158
+ - spec/fixtures/adapters/normalized/bitfinex_rates.yml
159
+ - spec/fixtures/adapters/normalized/bitpay_rates.yml
160
+ - spec/fixtures/adapters/normalized/bitstamp_rates.yml
161
+ - spec/fixtures/adapters/normalized/btc_china_rates.yml
162
+ - spec/fixtures/adapters/normalized/btce_rates.yml
163
+ - spec/fixtures/adapters/normalized/coinbase_rates.yml
164
+ - spec/fixtures/adapters/normalized/currency_layer_rates.yml
165
+ - spec/fixtures/adapters/normalized/exmo_rates.yml
166
+ - spec/fixtures/adapters/normalized/fixer_rates.yml
167
+ - spec/fixtures/adapters/normalized/forge_rates.yml
168
+ - spec/fixtures/adapters/normalized/free_forex_rates.yml
169
+ - spec/fixtures/adapters/normalized/huobi_rates.yml
170
+ - spec/fixtures/adapters/normalized/kraken_rates.yml
171
+ - spec/fixtures/adapters/normalized/localbitcoins_rates.yml
172
+ - spec/fixtures/adapters/normalized/okcoin_rates.yml
173
+ - spec/fixtures/adapters/normalized/yahoo_rates.yml
174
+ - spec/fixtures/adapters/okcoin_rates.yml
175
+ - spec/fixtures/adapters/yahoo_rates.yml
148
176
  - spec/lib/adapter_spec.rb
177
+ - spec/lib/adapters/crypto/binance_adapter_spec.rb
149
178
  - spec/lib/adapters/crypto/bitfinex_adapter_spec.rb
150
179
  - spec/lib/adapters/crypto/bitpay_adapter_spec.rb
151
180
  - spec/lib/adapters/crypto/bitstamp_adapter_spec.rb
152
181
  - spec/lib/adapters/crypto/btc_china_adapter_spec.rb
153
182
  - spec/lib/adapters/crypto/btc_e_adapter_spec.rb
154
183
  - spec/lib/adapters/crypto/coinbase_adapter_spec.rb
184
+ - spec/lib/adapters/crypto/exmo_adapter_spec.rb
155
185
  - spec/lib/adapters/crypto/huobi_adapter_spec.rb
156
186
  - spec/lib/adapters/crypto/kraken_adapter_spec.rb
157
187
  - spec/lib/adapters/crypto/localbitcoins_adapter_spec.rb
@@ -159,6 +189,7 @@ files:
159
189
  - spec/lib/adapters/fiat/currency_layer_adapter_spec.rb
160
190
  - spec/lib/adapters/fiat/fixer_adapter_spec.rb
161
191
  - spec/lib/adapters/fiat/forge_adapter_spec.rb
192
+ - spec/lib/adapters/fiat/free_forex_adapter_spec.rb
162
193
  - spec/lib/adapters/fiat/yahoo_adapter_spec.rb
163
194
  - spec/lib/currency_rate_spec.rb
164
195
  - spec/lib/fetcher_spec.rb
@@ -186,7 +217,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
186
217
  version: '0'
187
218
  requirements: []
188
219
  rubyforge_project:
189
- rubygems_version: 2.6.11
220
+ rubygems_version: 2.7.6
190
221
  signing_key:
191
222
  specification_version: 4
192
223
  summary: Converter for fiat and crypto currencies
@@ -1,18 +0,0 @@
1
- BTC_USD:
2
- mid: '1026.5'
3
- bid: '1026.4'
4
- ask: '1026.6'
5
- last_price: '1026.4'
6
- low: '1008.5'
7
- high: '1068.9'
8
- volume: '28452.12194795'
9
- timestamp: '1490764110.216100274'
10
- LTC_USD:
11
- mid: '4.18425'
12
- bid: '4.1685'
13
- ask: '4.2'
14
- last_price: '4.1923'
15
- low: '4.1267'
16
- high: '4.2195'
17
- volume: '35234.77245042'
18
- timestamp: '1490764110.771458434'
@@ -1,30 +0,0 @@
1
- BTC_USD:
2
- high: '1068.26'
3
- last: '1020.28'
4
- timestamp: '1490764115'
5
- bid: '1019.42'
6
- vwap: '1041.46'
7
- volume: '10503.67767552'
8
- low: '1008.16'
9
- ask: '1020.28'
10
- open: '1042.83'
11
- BTC_EUR:
12
- high: '983.04'
13
- last: '924.57'
14
- timestamp: '1490764113'
15
- bid: '924.51'
16
- vwap: '951.35'
17
- volume: '1868.82149121'
18
- low: '920.17'
19
- ask: '924.57'
20
- open: '957.10'
21
- EUR_USD:
22
- high: '1.10060'
23
- last: '1.10060'
24
- timestamp: '1490764118'
25
- bid: '1.10010'
26
- vwap: '1.09205'
27
- volume: '123973.95659'
28
- low: '1.07100'
29
- ask: '1.10060'
30
- open: '1.08880'
@@ -1,680 +0,0 @@
1
- usd_to_aed: '3.673014'
2
- aed_to_usd: '0.272256'
3
- usd_to_afn: '66.775414'
4
- afn_to_usd: '0.014976'
5
- usd_to_all: '125.19'
6
- all_to_usd: '0.007988'
7
- usd_to_amd: '485.48'
8
- amd_to_usd: '0.00206'
9
- usd_to_ang: '1.786376'
10
- ang_to_usd: '0.559793'
11
- usd_to_aoa: '165.9115'
12
- aoa_to_usd: '0.006027'
13
- usd_to_ars: '15.5855'
14
- ars_to_usd: '0.064162'
15
- usd_to_aud: '1.308301'
16
- aud_to_usd: '0.76435'
17
- usd_to_awg: '1.799996'
18
- awg_to_usd: '0.555557'
19
- usd_to_azn: '1.705'
20
- azn_to_usd: '0.58651'
21
- usd_to_bam: '1.808234'
22
- bam_to_usd: '0.553026'
23
- usd_to_bbd: '2.0'
24
- bbd_to_usd: '0.5'
25
- usd_to_bdt: '80.552549'
26
- bdt_to_usd: '0.012414'
27
- usd_to_bgn: '1.808495'
28
- bgn_to_usd: '0.552946'
29
- usd_to_bhd: '0.376995'
30
- bhd_to_usd: '2.652555'
31
- usd_to_bif: '1697.3'
32
- bif_to_usd: '0.000589'
33
- usd_to_bmd: '1.0'
34
- bmd_to_usd: '1.0'
35
- usd_to_bnd: '1.393488'
36
- bnd_to_usd: '0.717624'
37
- usd_to_bob: '6.934041'
38
- bob_to_usd: '0.144216'
39
- usd_to_brl: '3.14'
40
- brl_to_usd: '0.318471'
41
- usd_to_bsd: '1.0'
42
- bsd_to_usd: '1.0'
43
- usd_to_btn: '64.997623'
44
- btn_to_usd: '0.015385'
45
- usd_to_bwp: '10.317393'
46
- bwp_to_usd: '0.096924'
47
- usd_to_byn: '1.882889'
48
- byn_to_usd: '0.531099'
49
- usd_to_byr: '20026.25'
50
- byr_to_usd: '0.00005'
51
- usd_to_bzd: '2.017142'
52
- bzd_to_usd: '0.495751'
53
- usd_to_cad: '1.339255'
54
- cad_to_usd: '0.746684'
55
- usd_to_cdf: '1351.598174'
56
- cdf_to_usd: '0.00074'
57
- usd_to_chf: '0.992291'
58
- chf_to_usd: '1.007769'
59
- usd_to_clf: '0.024902'
60
- clf_to_usd: '40.157417'
61
- usd_to_clp: '665.143664'
62
- clp_to_usd: '0.001503'
63
- usd_to_cny: '6.89195'
64
- cny_to_usd: '0.145097'
65
- usd_to_cop: '2924.58'
66
- cop_to_usd: '0.000342'
67
- usd_to_crc: '557.665'
68
- crc_to_usd: '0.001793'
69
- usd_to_cuc: '1.0'
70
- cuc_to_usd: '1.0'
71
- usd_to_cup: '24.728383'
72
- cup_to_usd: '0.040439'
73
- usd_to_cve: '102.4'
74
- cve_to_usd: '0.009766'
75
- usd_to_czk: '24.983258'
76
- czk_to_usd: '0.040027'
77
- usd_to_djf: '178.97'
78
- djf_to_usd: '0.005588'
79
- usd_to_dkk: '6.879526'
80
- dkk_to_usd: '0.145359'
81
- usd_to_dop: '47.2415'
82
- dop_to_usd: '0.021168'
83
- usd_to_dzd: '109.275'
84
- dzd_to_usd: '0.009151'
85
- usd_to_eek: '14.442187'
86
- eek_to_usd: '0.069242'
87
- usd_to_egp: '18.242'
88
- egp_to_usd: '0.054819'
89
- usd_to_ern: '15.327575'
90
- ern_to_usd: '0.065242'
91
- usd_to_etb: '22.848504'
92
- etb_to_usd: '0.043767'
93
- usd_to_eur: '0.924641'
94
- eur_to_usd: '1.081501'
95
- usd_to_fjd: '2.064457'
96
- fjd_to_usd: '0.484389'
97
- usd_to_fkp: '0.805737'
98
- fkp_to_usd: '1.2411'
99
- usd_to_gbp: '0.805737'
100
- gbp_to_usd: '1.2411'
101
- usd_to_gel: '2.44319'
102
- gel_to_usd: '0.409301'
103
- usd_to_ggp: '0.805737'
104
- ggp_to_usd: '1.2411'
105
- usd_to_ghs: '4.370189'
106
- ghs_to_usd: '0.228823'
107
- usd_to_gip: '0.805737'
108
- gip_to_usd: '1.2411'
109
- usd_to_gmd: '45.17'
110
- gmd_to_usd: '0.022139'
111
- usd_to_gnf: '9414.9'
112
- gnf_to_usd: '0.000106'
113
- usd_to_gtq: '7.368091'
114
- gtq_to_usd: '0.13572'
115
- usd_to_gyd: '208.735'
116
- gyd_to_usd: '0.004791'
117
- usd_to_hkd: '7.767978'
118
- hkd_to_usd: '0.128734'
119
- usd_to_hnl: '23.510713'
120
- hnl_to_usd: '0.042534'
121
- usd_to_hrk: '6.8752'
122
- hrk_to_usd: '0.14545'
123
- usd_to_htg: '69.0895'
124
- htg_to_usd: '0.014474'
125
- usd_to_huf: '286.4185'
126
- huf_to_usd: '0.003491'
127
- usd_to_idr: '13313.859733'
128
- idr_to_usd: '0.000075'
129
- usd_to_ils: '3.616735'
130
- ils_to_usd: '0.276492'
131
- usd_to_imp: '0.805737'
132
- imp_to_usd: '1.2411'
133
- usd_to_inr: '64.965'
134
- inr_to_usd: '0.015393'
135
- usd_to_iqd: '1172.05'
136
- iqd_to_usd: '0.000853'
137
- usd_to_irr: '32429.259955'
138
- irr_to_usd: '0.000031'
139
- usd_to_isk: '110.78'
140
- isk_to_usd: '0.009027'
141
- usd_to_jep: '0.805737'
142
- jep_to_usd: '1.2411'
143
- usd_to_jmd: '129.345'
144
- jmd_to_usd: '0.007731'
145
- usd_to_jod: '0.709503'
146
- jod_to_usd: '1.409437'
147
- usd_to_jpy: '111.169667'
148
- jpy_to_usd: '0.008995'
149
- usd_to_kes: '103.0'
150
- kes_to_usd: '0.009709'
151
- usd_to_kgs: '68.6533'
152
- kgs_to_usd: '0.014566'
153
- usd_to_khr: '4008.25'
154
- khr_to_usd: '0.000249'
155
- usd_to_kmf: '455.716615'
156
- kmf_to_usd: '0.002194'
157
- usd_to_kpw: '900.09'
158
- kpw_to_usd: '0.001111'
159
- usd_to_krw: '1113.68'
160
- krw_to_usd: '0.000898'
161
- usd_to_kwd: '0.304307'
162
- kwd_to_usd: '3.286155'
163
- usd_to_kyd: '0.836331'
164
- kyd_to_usd: '1.195699'
165
- usd_to_kzt: '316.225'
166
- kzt_to_usd: '0.003162'
167
- usd_to_lak: '8121.460256'
168
- lak_to_usd: '0.000123'
169
- usd_to_lbp: '1511.6'
170
- lbp_to_usd: '0.000662'
171
- usd_to_lkr: '152.499495'
172
- lkr_to_usd: '0.006557'
173
- usd_to_lrd: '93.996255'
174
- lrd_to_usd: '0.010639'
175
- usd_to_lsl: '12.98634'
176
- lsl_to_usd: '0.077004'
177
- usd_to_ltl: '3.186993'
178
- ltl_to_usd: '0.313775'
179
- usd_to_lvl: '0.648705'
180
- lvl_to_usd: '1.541533'
181
- usd_to_lyd: '1.419151'
182
- lyd_to_usd: '0.704647'
183
- usd_to_mad: '9.968116'
184
- mad_to_usd: '0.10032'
185
- usd_to_mdl: '19.5175'
186
- mdl_to_usd: '0.051236'
187
- usd_to_mga: '3236.05'
188
- mga_to_usd: '0.000309'
189
- usd_to_mkd: '56.937094'
190
- mkd_to_usd: '0.017563'
191
- usd_to_mmk: '1373.65'
192
- mmk_to_usd: '0.000728'
193
- usd_to_mnt: '2450.069673'
194
- mnt_to_usd: '0.000408'
195
- usd_to_mop: '8.029075'
196
- mop_to_usd: '0.124547'
197
- usd_to_mro: '361.02'
198
- mro_to_usd: '0.00277'
199
- usd_to_mtl: '0.683602'
200
- mtl_to_usd: '1.462839'
201
- usd_to_mur: '35.198'
202
- mur_to_usd: '0.028411'
203
- usd_to_mvr: '15.490106'
204
- mvr_to_usd: '0.064557'
205
- usd_to_mwk: '728.18'
206
- mwk_to_usd: '0.001373'
207
- usd_to_mxn: '19.024615'
208
- mxn_to_usd: '0.052563'
209
- usd_to_myr: '4.420966'
210
- myr_to_usd: '0.226195'
211
- usd_to_mzn: '68.498026'
212
- mzn_to_usd: '0.014599'
213
- usd_to_nad: '12.9144'
214
- nad_to_usd: '0.077433'
215
- usd_to_ngn: '315.845'
216
- ngn_to_usd: '0.003166'
217
- usd_to_nio: '29.595'
218
- nio_to_usd: '0.033789'
219
- usd_to_nok: '8.520446'
220
- nok_to_usd: '0.117365'
221
- usd_to_npr: '104.53'
222
- npr_to_usd: '0.009567'
223
- usd_to_nzd: '1.426862'
224
- nzd_to_usd: '0.700839'
225
- usd_to_omr: '0.384982'
226
- omr_to_usd: '2.597524'
227
- usd_to_pab: '1.0'
228
- pab_to_usd: '1.0'
229
- usd_to_pen: '3.243496'
230
- pen_to_usd: '0.308309'
231
- usd_to_pgk: '3.185157'
232
- pgk_to_usd: '0.313956'
233
- usd_to_php: '50.19'
234
- php_to_usd: '0.019924'
235
- usd_to_pkr: '105.176062'
236
- pkr_to_usd: '0.009508'
237
- usd_to_pln: '3.921355'
238
- pln_to_usd: '0.255014'
239
- usd_to_pyg: '5665.3'
240
- pyg_to_usd: '0.000177'
241
- usd_to_qar: '3.641515'
242
- qar_to_usd: '0.274611'
243
- usd_to_ron: '4.208309'
244
- ron_to_usd: '0.237625'
245
- usd_to_rsd: '114.545'
246
- rsd_to_usd: '0.00873'
247
- usd_to_rub: '56.9732'
248
- rub_to_usd: '0.017552'
249
- usd_to_rwf: '842.03'
250
- rwf_to_usd: '0.001188'
251
- usd_to_sar: '3.75'
252
- sar_to_usd: '0.266667'
253
- usd_to_sbd: '7.781822'
254
- sbd_to_usd: '0.128505'
255
- usd_to_scr: '13.472207'
256
- scr_to_usd: '0.074227'
257
- usd_to_sdg: '6.707688'
258
- sdg_to_usd: '0.149083'
259
- usd_to_sek: '8.832331'
260
- sek_to_usd: '0.11322'
261
- usd_to_sgd: '1.396822'
262
- sgd_to_usd: '0.715911'
263
- usd_to_shp: '0.805737'
264
- shp_to_usd: '1.2411'
265
- usd_to_sll: '7476.481429'
266
- sll_to_usd: '0.000134'
267
- usd_to_sos: '580.48'
268
- sos_to_usd: '0.001723'
269
- usd_to_srd: '7.55'
270
- srd_to_usd: '0.13245'
271
- usd_to_std: '22608.476608'
272
- std_to_usd: '0.000044'
273
- usd_to_svc: '8.781382'
274
- svc_to_usd: '0.113877'
275
- usd_to_syp: '214.336667'
276
- syp_to_usd: '0.004666'
277
- usd_to_szl: '12.945978'
278
- szl_to_usd: '0.077244'
279
- usd_to_thb: '34.512'
280
- thb_to_usd: '0.028975'
281
- usd_to_tjs: '8.269805'
282
- tjs_to_usd: '0.120922'
283
- usd_to_tmt: '3.50998'
284
- tmt_to_usd: '0.284902'
285
- usd_to_tnd: '2.259394'
286
- tnd_to_usd: '0.442597'
287
- usd_to_top: '2.282158'
288
- top_to_usd: '0.438182'
289
- usd_to_try: '3.657586'
290
- try_to_usd: '0.273404'
291
- usd_to_ttd: '6.753426'
292
- ttd_to_usd: '0.148073'
293
- usd_to_twd: '30.2225'
294
- twd_to_usd: '0.033088'
295
- usd_to_tzs: '2239.65'
296
- tzs_to_usd: '0.000446'
297
- usd_to_uah: '27.228232'
298
- uah_to_usd: '0.036727'
299
- usd_to_ugx: '3617.5'
300
- ugx_to_usd: '0.000276'
301
- usd_to_uyu: '28.523379'
302
- uyu_to_usd: '0.035059'
303
- usd_to_uzs: '3562.35'
304
- uzs_to_usd: '0.000281'
305
- usd_to_vef: '9.985022'
306
- vef_to_usd: '0.10015'
307
- usd_to_vnd: '22765.268732'
308
- vnd_to_usd: '0.000044'
309
- usd_to_vuv: '107.449537'
310
- vuv_to_usd: '0.009307'
311
- usd_to_wst: '2.52988'
312
- wst_to_usd: '0.395276'
313
- usd_to_xaf: '606.613237'
314
- xaf_to_usd: '0.001648'
315
- usd_to_xag: '0.055334'
316
- xag_to_usd: '18.07198'
317
- usd_to_xau: '0.0008'
318
- xau_to_usd: '1249.515813'
319
- usd_to_xcd: '2.70255'
320
- xcd_to_usd: '0.370021'
321
- usd_to_xdr: '0.732123'
322
- xdr_to_usd: '1.365891'
323
- usd_to_xof: '607.479283'
324
- xof_to_usd: '0.001646'
325
- usd_to_xpf: '110.746597'
326
- xpf_to_usd: '0.00903'
327
- usd_to_yer: '250.281642'
328
- yer_to_usd: '0.003995'
329
- usd_to_zar: '13.003902'
330
- zar_to_usd: '0.0769'
331
- usd_to_zmk: '5252.024745'
332
- zmk_to_usd: '0.00019'
333
- usd_to_zmw: '9.572679'
334
- zmw_to_usd: '0.104464'
335
- usd_to_zwl: '322.387247'
336
- zwl_to_usd: '0.003102'
337
- usd_to_etc: '0.435983'
338
- etc_to_usd: '2.29367'
339
- btc_to_usd: '1024.86'
340
- usd_to_btc: '0.000976'
341
- btc_to_eur: '944.14'
342
- eur_to_btc: '0.001059'
343
- btc_to_gbp: '827.09'
344
- gbp_to_btc: '0.001209'
345
- eth_to_usd: '51.82'
346
- usd_to_eth: '0.019298'
347
- eth_to_btc: '0.05048'
348
- btc_to_eth: '19.809826'
349
- ltc_to_usd: '4.19'
350
- usd_to_ltc: '0.238663'
351
- ltc_to_btc: '0.00408'
352
- btc_to_ltc: '245.098039'
353
- usd_to_ssp: '18.613868'
354
- ssp_to_usd: '0.053723'
355
- btc_to_aed: '3764.33'
356
- btc_to_afn: '68435.45'
357
- btc_to_all: '128302.22'
358
- btc_to_amd: '497549.03'
359
- btc_to_ang: '1830.79'
360
- btc_to_aoa: '170036.06'
361
- btc_to_ars: '15972.96'
362
- btc_to_aud: '1340.83'
363
- btc_to_awg: '1844.74'
364
- btc_to_azn: '1747.39'
365
- btc_to_bam: '1853.19'
366
- btc_to_bbd: '2049.72'
367
- btc_to_bdt: '82555.09'
368
- btc_to_bgn: '1853.45'
369
- btc_to_bhd: '386.367'
370
- btc_to_bif: '1739494.88'
371
- btc_to_bmd: '1024.86'
372
- btc_to_bnd: '1428.13'
373
- btc_to_bob: '7106.42'
374
- btc_to_brl: '3218.06'
375
- btc_to_bsd: '1024.86'
376
- btc_to_btn: '66613.46'
377
- btc_to_bwp: '10573.88'
378
- btc_to_byn: '1929.7'
379
- btc_to_byr: '20524103.0'
380
- btc_to_bzd: '2067.29'
381
- btc_to_cad: '1372.55'
382
- btc_to_cdf: '1385198.9'
383
- btc_to_chf: '1016.96'
384
- btc_to_clf: '25.5211'
385
- btc_to_clp: '681679.0'
386
- btc_to_cny: '7063.28'
387
- btc_to_cop: '2997285.06'
388
- btc_to_crc: '571528.55'
389
- btc_to_cuc: '1024.86'
390
- btc_to_cve: '104945.66'
391
- btc_to_czk: '25604.34'
392
- btc_to_djf: '183419.19'
393
- btc_to_dkk: '7050.55'
394
- btc_to_dop: '48415.92'
395
- btc_to_dzd: '111991.58'
396
- btc_to_egp: '18695.5'
397
- btc_to_ern: '15708.62'
398
- btc_to_etb: '23416.52'
399
- btc_to_fjd: '2115.78'
400
- btc_to_fkp: '825.77'
401
- btc_to_gel: '2503.93'
402
- btc_to_ghs: '4478.83'
403
- btc_to_gip: '825.77'
404
- btc_to_gmd: '46292.93'
405
- btc_to_gnf: '9648954.41'
406
- btc_to_gtq: '7551.26'
407
- btc_to_gyd: '213924.15'
408
- btc_to_hkd: '7961.09'
409
- btc_to_hnl: '24095.19'
410
- btc_to_hrk: '7046.12'
411
- btc_to_htg: '70807.06'
412
- btc_to_huf: '293538.86'
413
- btc_to_idr: '13644842.29'
414
- btc_to_ils: '3706.65'
415
- btc_to_inr: '66580.03'
416
- btc_to_iqd: '1201187.163'
417
- btc_to_isk: '113534.0'
418
- btc_to_jmd: '132560.52'
419
- btc_to_jod: '727.141'
420
- btc_to_jpy: '113933.0'
421
- btc_to_kes: '105560.58'
422
- btc_to_kgs: '70360.02'
423
- btc_to_khr: '4107895.1'
424
- btc_to_kmf: '467045.73'
425
- btc_to_krw: '1141366.0'
426
- btc_to_kwd: '311.872'
427
- btc_to_kyd: '857.12'
428
- btc_to_kzt: '324086.35'
429
- btc_to_lak: '8323359.76'
430
- btc_to_lbp: '1549178.38'
431
- btc_to_lkr: '156290.63'
432
- btc_to_lrd: '96333.0'
433
- btc_to_lsl: '13309.18'
434
- btc_to_ltl: '3266.22'
435
- btc_to_lvl: '664.83'
436
- btc_to_lyd: '1454.431'
437
- btc_to_mad: '10215.92'
438
- btc_to_mdl: '20002.71'
439
- btc_to_mga: '3316498.2'
440
- btc_to_mkd: '58352.55'
441
- btc_to_mmk: '1407798.94'
442
- btc_to_mnt: '2510978.41'
443
- btc_to_mop: '8228.68'
444
- btc_to_mro: '369995.0'
445
- btc_to_mur: '36073.02'
446
- btc_to_mvr: '15875.19'
447
- btc_to_mwk: '746282.55'
448
- btc_to_mxn: '19497.57'
449
- btc_to_myr: '4530.87'
450
- btc_to_mzn: '70200.89'
451
- btc_to_nad: '13235.45'
452
- btc_to_ngn: '323696.91'
453
- btc_to_nio: '30330.73'
454
- btc_to_nok: '8732.26'
455
- btc_to_npr: '107128.62'
456
- btc_to_nzd: '1462.33'
457
- btc_to_omr: '394.553'
458
- btc_to_pab: '1024.86'
459
- btc_to_pen: '3324.13'
460
- btc_to_pgk: '3264.34'
461
- btc_to_php: '51437.72'
462
- btc_to_pkr: '107790.74'
463
- btc_to_pln: '4018.84'
464
- btc_to_pyg: '5806139.36'
465
- btc_to_qar: '3732.04'
466
- btc_to_ron: '4312.93'
467
- btc_to_rsd: '117392.59'
468
- btc_to_rub: '58389.55'
469
- btc_to_rwf: '862962.87'
470
- btc_to_sar: '3843.22'
471
- btc_to_sbd: '7975.28'
472
- btc_to_scr: '13807.13'
473
- btc_to_sek: '9051.9'
474
- btc_to_shp: '825.77'
475
- btc_to_sll: '7662346.76'
476
- btc_to_sos: '594910.73'
477
- btc_to_srd: '7737.69'
478
- btc_to_ssp: '19076.61'
479
- btc_to_std: '23170523.34'
480
- btc_to_svc: '8999.69'
481
- btc_to_szl: '13267.82'
482
- btc_to_thb: '35369.97'
483
- btc_to_tjs: '8475.39'
484
- btc_to_tmt: '3597.24'
485
- btc_to_tnd: '2315.563'
486
- btc_to_top: '2338.89'
487
- btc_to_try: '3748.51'
488
- btc_to_ttd: '6921.32'
489
- btc_to_twd: '30973.83'
490
- btc_to_tzs: '2295327.7'
491
- btc_to_uah: '27905.13'
492
- btc_to_ugx: '3707431.05'
493
- btc_to_uyu: '29232.47'
494
- btc_to_uzs: '3650910.02'
495
- btc_to_vef: '10233.25'
496
- btc_to_vnd: '23331213.0'
497
- btc_to_vuv: '110121.0'
498
- btc_to_wst: '2592.77'
499
- btc_to_xaf: '621693.64'
500
- btc_to_xag: '57.0'
501
- btc_to_xau: '1.0'
502
- btc_to_xcd: '2769.74'
503
- btc_to_xdr: '750.0'
504
- btc_to_xof: '622581.22'
505
- btc_to_xpf: '113499.76'
506
- btc_to_yer: '256503.64'
507
- btc_to_zar: '13327.18'
508
- btc_to_zmk: '5382590.08'
509
- btc_to_zmw: '9810.66'
510
- btc_to_jep: '825.77'
511
- btc_to_ggp: '825.77'
512
- btc_to_imp: '825.77'
513
- btc_to_eek: '14801.22'
514
- btc_to_mtl: '700.6'
515
- btc_to_zwl: '330401.79'
516
- btc_to_sgd: '1431.55'
517
- eth_to_aed: '190.34'
518
- eth_to_afn: '3460.3'
519
- eth_to_all: '6487.35'
520
- eth_to_amd: '25157.57'
521
- eth_to_ang: '92.57'
522
- eth_to_aoa: '8597.53'
523
- eth_to_ars: '807.64'
524
- eth_to_aud: '67.8'
525
- eth_to_awg: '93.28'
526
- eth_to_azn: '88.35'
527
- eth_to_bam: '93.7'
528
- eth_to_bbd: '103.64'
529
- eth_to_bdt: '4174.23'
530
- eth_to_bgn: '93.72'
531
- eth_to_bhd: '19.536'
532
- eth_to_bif: '87954.09'
533
- eth_to_bmd: '51.82'
534
- eth_to_bnd: '72.21'
535
- eth_to_bob: '359.32'
536
- eth_to_brl: '162.71'
537
- eth_to_bsd: '51.82'
538
- eth_to_btn: '3368.18'
539
- eth_to_bwp: '534.65'
540
- eth_to_byn: '97.57'
541
- eth_to_byr: '1037760.0'
542
- eth_to_bzd: '104.53'
543
- eth_to_cad: '69.4'
544
- eth_to_cdf: '70039.82'
545
- eth_to_chf: '51.42'
546
- eth_to_clf: '1.2904'
547
- eth_to_clp: '34468.0'
548
- eth_to_cny: '357.14'
549
- eth_to_cop: '151551.74'
550
- eth_to_crc: '28898.2'
551
- eth_to_cuc: '51.82'
552
- eth_to_cve: '5306.37'
553
- eth_to_czk: '1294.63'
554
- eth_to_djf: '9274.23'
555
- eth_to_dkk: '356.5'
556
- eth_to_dop: '2448.05'
557
- eth_to_dzd: '5662.63'
558
- eth_to_egp: '945.3'
559
- eth_to_ern: '794.27'
560
- eth_to_etb: '1184.01'
561
- eth_to_eur: '47.91'
562
- eth_to_fjd: '106.98'
563
- eth_to_fkp: '41.75'
564
- eth_to_gbp: '41.75'
565
- eth_to_gel: '126.61'
566
- eth_to_ghs: '226.46'
567
- eth_to_gip: '41.75'
568
- eth_to_gmd: '2340.71'
569
- eth_to_gnf: '487880.12'
570
- eth_to_gtq: '381.81'
571
- eth_to_gyd: '10816.65'
572
- eth_to_hkd: '402.54'
573
- eth_to_hnl: '1218.33'
574
- eth_to_hrk: '356.27'
575
- eth_to_htg: '3580.22'
576
- eth_to_huf: '14842.21'
577
- eth_to_idr: '689924.21'
578
- eth_to_ils: '187.42'
579
- eth_to_inr: '3366.49'
580
- eth_to_iqd: '60735.631'
581
- eth_to_isk: '5741.0'
582
- eth_to_jmd: '6702.66'
583
- eth_to_jod: '36.766'
584
- eth_to_jpy: '5761.0'
585
- eth_to_kes: '5337.46'
586
- eth_to_kgs: '3557.61'
587
- eth_to_khr: '207707.52'
588
- eth_to_kmf: '23615.23'
589
- eth_to_krw: '57711.0'
590
- eth_to_kwd: '15.769'
591
- eth_to_kyd: '43.34'
592
- eth_to_kzt: '16386.78'
593
- eth_to_lak: '420854.07'
594
- eth_to_lbp: '78331.11'
595
- eth_to_lkr: '7902.52'
596
- eth_to_lrd: '4870.89'
597
- eth_to_lsl: '672.95'
598
- eth_to_ltl: '165.15'
599
- eth_to_lvl: '33.62'
600
- eth_to_lyd: '73.54'
601
- eth_to_mad: '516.55'
602
- eth_to_mdl: '1011.4'
603
- eth_to_mga: '167692.2'
604
- eth_to_mkd: '2950.48'
605
- eth_to_mmk: '71182.54'
606
- eth_to_mnt: '126962.61'
607
- eth_to_mop: '416.07'
608
- eth_to_mro: '18708.0'
609
- eth_to_mur: '1823.96'
610
- eth_to_mvr: '802.7'
611
- eth_to_mwk: '37734.29'
612
- eth_to_mxn: '985.86'
613
- eth_to_myr: '229.09'
614
- eth_to_mzn: '3549.57'
615
- eth_to_nad: '669.22'
616
- eth_to_ngn: '16367.09'
617
- eth_to_nio: '1533.61'
618
- eth_to_nok: '441.53'
619
- eth_to_npr: '5416.74'
620
- eth_to_nzd: '73.94'
621
- eth_to_omr: '19.95'
622
- eth_to_pab: '51.82'
623
- eth_to_pen: '168.08'
624
- eth_to_pgk: '165.05'
625
- eth_to_php: '2600.85'
626
- eth_to_pkr: '5450.22'
627
- eth_to_pln: '203.2'
628
- eth_to_pyg: '293575.85'
629
- eth_to_qar: '188.7'
630
- eth_to_ron: '218.07'
631
- eth_to_rsd: '5935.72'
632
- eth_to_rub: '2952.35'
633
- eth_to_rwf: '43633.99'
634
- eth_to_sar: '194.32'
635
- eth_to_sbd: '403.25'
636
- eth_to_scr: '698.13'
637
- eth_to_sek: '457.69'
638
- eth_to_shp: '41.75'
639
- eth_to_sll: '387431.27'
640
- eth_to_sos: '30080.47'
641
- eth_to_srd: '391.24'
642
- eth_to_ssp: '964.57'
643
- eth_to_std: '1171571.26'
644
- eth_to_svc: '455.05'
645
- eth_to_szl: '670.86'
646
- eth_to_thb: '1788.41'
647
- eth_to_tjs: '428.54'
648
- eth_to_tmt: '181.89'
649
- eth_to_tnd: '117.082'
650
- eth_to_top: '118.26'
651
- eth_to_try: '189.54'
652
- eth_to_ttd: '349.96'
653
- eth_to_twd: '1566.13'
654
- eth_to_tzs: '116058.66'
655
- eth_to_uah: '1410.97'
656
- eth_to_ugx: '187458.85'
657
- eth_to_uyu: '1478.08'
658
- eth_to_uzs: '184600.98'
659
- eth_to_vef: '517.42'
660
- eth_to_vnd: '1179696.0'
661
- eth_to_vuv: '5568.0'
662
- eth_to_wst: '131.1'
663
- eth_to_xaf: '31434.7'
664
- eth_to_xag: '3.0'
665
- eth_to_xau: '0.0'
666
- eth_to_xcd: '140.05'
667
- eth_to_xdr: '38.0'
668
- eth_to_xof: '31479.58'
669
- eth_to_xpf: '5738.89'
670
- eth_to_yer: '12969.59'
671
- eth_to_zar: '673.86'
672
- eth_to_zmk: '272159.92'
673
- eth_to_zmw: '496.06'
674
- eth_to_jep: '41.75'
675
- eth_to_ggp: '41.75'
676
- eth_to_imp: '41.75'
677
- eth_to_eek: '748.39'
678
- eth_to_mtl: '35.42'
679
- eth_to_zwl: '16706.11'
680
- eth_to_sgd: '72.38'