-
Couldn't load subscription status.
- Fork 1.1k
Description
Price API No Longer Returns Data for nDEPS Token
Issue Description
The DeFi Llama price API endpoint is no longer returning price data for the nDEPS token (ethereum:0xc71104001a3ccda1bef1177d765831bd1bfe8ee6). This
token was previously working correctly with the price API, but suddenly started returning empty results a few days ago.
Steps to Reproduce
- Query the endpoint: https://coins.llama.fi/prices/current/ethereum:0xc71104001a3ccda1bef1177d765831bd1bfe8ee6
- Response:
{"coins":{}} - Even with a large searchWidth parameter (e.g., ?searchWidth=10000h), no price data is returned
Expected Behavior
The API should return the current price for the nDEPS token as it did previously and as is available on Coingecko.
Actual Behavior
The API returns an empty coins object.
Additional Information
- Token contract: 0xc71104001a3ccda1bef1177d765831bd1bfe8ee6 (Ethereum)
- Token Symbol: nDEPS
- The token price is available on Coingecko:
https://api.coingecko.com/api/v3/simple/token_price/ethereum?contract_addresses=0xc71104001a3ccda1bef1177d765831bd1bfe8ee6&vs_currencies=usd - Coingecko returns:
{"0xc71104001a3ccda1bef1177d765831bd1bfe8ee6":{"usd":0.407767}} - This issue is affecting my DeFi Llama adapter for dEURO (https://github.com/DefiLlama/DefiLlama-Adapters/blob/main/projects/dEURO/index.js) which
relies on this price data
Impact
This is causing incorrect TVL calculations for the dEURO protocol in the DeFi Llama dashboard.
Possible Causes
I've reviewed the code and the token is not in the distressedAssets list. Since it was working before but suddenly stopped, it might be due to:
- The token record being accidentally removed from the database
- A change in how this specific token's data is processed or stored
- An issue with the background jobs that fetch price data from Coingecko
Any assistance in resolving this issue would be greatly appreciated.