datavortexTest
Updated 2025-01-09
99
1
2
3
4
5
6
7
8
9
10
›
⌄
WITH ethena_funds AS (
SELECT t."from" AS address,
t.amount_usd
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
FROM ethena_funds;
QueryRunArchived: QueryRun has been archived