mondovInflows/Outflows by CEX (AVAX)
Updated 2023-04-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- forked from Weekly Inflows/Outflows @ https://flipsidecrypto.xyz/edit/queries/b7146b7f-5a86-4ba5-9730-7b1599001b8c
SELECT
REGEXP_SUBSTR(ADDRESS_NAME, '^[^[:space:]:]+') AS cex,
SUM(CASE WHEN FROM_ADDRESS = ADDRESS THEN AVAX_VALUE ELSE 0 END) AS outflow,
SUM(CASE WHEN TO_ADDRESS = ADDRESS THEN AVAX_VALUE ELSE 0 END) AS inflow
FROM avalanche.core.fact_transactions
JOIN avalanche.core.dim_labels
ON (avalanche.core.fact_transactions.FROM_ADDRESS = avalanche.core.dim_labels.ADDRESS OR avalanche.core.fact_transactions.TO_ADDRESS = avalanche.core.dim_labels.ADDRESS)
WHERE LABEL_TYPE = 'cex'
GROUP BY cex;
Run a query to Download Data