ben-wyatterc20-token-transfers
Updated 2025-02-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
›
⌄
SELECT
DATE_TRUNC('month', block_timestamp) AS rounded_month,
COUNT(DISTINCT from_address) as unique_users,
--symbol,
SUM(amount_usd) as tx_vol_usd,
COUNT(amount_usd) as tx_count,
CASE
WHEN amount_usd > 100000 THEN 'Large'
ELSE 'Small'
END AS transaction_size
FROM avalanche.core.ez_token_transfers
WHERE rounded_month BETWEEN '2022-01-01' AND '2024-12-31' AND amount_usd < 1e15
GROUP BY
rounded_month, transaction_size
ORDER BY
rounded_month, transaction_size;
QueryRunArchived: QueryRun has been archived