fix amount_usd calculation

This commit is contained in:
Mike Stepanovic 2025-08-19 09:01:32 -06:00
parent 895e245f09
commit c6320ff382

View File

@ -62,7 +62,7 @@ SELECT
10,
b.decimals
) AS amount,
(amount / pow(10, b.decimals)) * C.price AS amount_usd,
amount * C.price AS amount_usd,
COALESCE(
C.token_is_verified,
FALSE