datavortexetherna symbol
Updated 2025-01-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
WITH ethena_funds AS (
SELECT t."from" AS address,
t.amount_usd,
t.symbol
FROM $query('9c34be15-06fc-4ab1-a405-abcb5a2146cc') t
)
SELECT
'Ethena' AS project,
COUNT(DISTINCT address) AS total_users,
SUM(amount_usd) AS total_amount_usd,
symbol
FROM ethena_funds
GROUP BY symbol;
QueryRunArchived: QueryRun has been archived