kitlunaMakerDAO/Deposit (4)
Updated 2022-09-04
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
DEPOSITOR,
SUM (AMOUNT_DEPOSITED * PRICE) as volume_deposited
FROM ethereum.maker.ez_deposits a
LEFT JOIN ethereum.core.fact_hourly_token_prices b
ON HOUR = BLOCK_TIMESTAMP::date
AND a.symbol = b.symbol
WHERE BLOCK_TIMESTAMP >= '2022-01-01' AND TX_STATUS = 'SUCCESS'
GROUP BY DEPOSITOR
HAVING volume_deposited IS NOT NULL
ORDER BY volume_deposited DESC
Run a query to Download Data