Merge pull request #3574 from poanetwork/vb-uni-id

Correct UNI token CoinGecko ID
pull/3577/head
Victor Baranov 4 years ago committed by GitHub
commit f49e72681e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 13
      apps/explorer/lib/explorer/exchange_rates/source/coin_gecko.ex

@ -6,6 +6,7 @@
### Fixes
### Chore
- [#3574](https://github.com/poanetwork/blockscout/pull/3574) - Correct UNI token price
- [#3567](https://github.com/poanetwork/blockscout/pull/3567) - Force to show filter at the page where filtered items list is empty
- [#3565](https://github.com/poanetwork/blockscout/pull/3565) - Staking dapp: unhealthy state alert message

@ -124,6 +124,11 @@ defmodule Explorer.ExchangeRates.Source.CoinGecko do
end
def coin_id(symbol) do
id_mapping = bridged_token_symbol_to_id_mapping_to_get_price(symbol)
if id_mapping do
{:ok, id_mapping}
else
url = "#{base_url()}/coins/list"
symbol_downcase = String.downcase(symbol)
@ -149,6 +154,7 @@ defmodule Explorer.ExchangeRates.Source.CoinGecko do
resp
end
end
end
defp get_btc_price(currency \\ "usd") do
url = "#{base_url()}/exchange_rates"
@ -172,4 +178,11 @@ defmodule Explorer.ExchangeRates.Source.CoinGecko do
defp config(key) do
Application.get_env(:explorer, __MODULE__, [])[key]
end
defp bridged_token_symbol_to_id_mapping_to_get_price(symbol) do
case symbol do
"UNI" -> "uniswap"
_symbol -> nil
end
end
end

Loading…
Cancel
Save