SELECT
distinct origin_from_address as Unique_users,
count (Tx_hash) as number_of_withraws,
sum (amount_usd) as Amount,
From avalanche.defi.ez_lending_withdraws
WHERE block_timestamp >= '2024-01-01'
and platform = 'Benqi'
GROUP BY 1
ORDER by 3 DESC
LIMIT 10