Skip to content

Commit

Permalink
fix price AA in 0.5$ (#428)
Browse files Browse the repository at this point in the history
  • Loading branch information
hichri-louay committed Feb 23, 2024
2 parents 4bbda4e + 6120afc commit 687382c
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion web3/wallets.js
Original file line number Diff line number Diff line change
Expand Up @@ -725,7 +725,10 @@ exports.getPrices = async () => {
tokenAddress: tokenAddress,
symbol: elem.symbol,
name: elem.name,
price: elem?.quote.USD.price,
price:
elem.symbol === 'AA'
? '0.5'
: elem?.quote.USD.price,
percent_change_24h:
elem?.quote.USD.percent_change_24h,
percent_change_1h:
Expand Down

0 comments on commit 687382c

Please sign in to comment.