TYPE | DATE | VOLUME | |
---|---|---|---|
1 | inflow | 2024-06-12 00:00:00.000 | 100293.425029309 |
2 | inflow | 2024-07-17 00:00:00.000 | 76.27 |
3 | outflow | 2024-08-31 00:00:00.000 | -10492.49 |
4 | outflow | 2024-03-11 00:00:00.000 | -45016.09 |
5 | inflow | 2024-02-21 00:00:00.000 | 113844.38 |
6 | outflow | 2024-06-10 00:00:00.000 | -556894.913374797 |
7 | inflow | 2024-07-26 00:00:00.000 | 101793.225193965 |
8 | outflow | 2024-08-04 00:00:00.000 | -35685.84 |
9 | outflow | 2025-02-08 00:00:00.000 | -1.28 |
10 | outflow | 2024-10-07 00:00:00.000 | -455561.079251759 |
11 | outflow | 2024-03-23 00:00:00.000 | -29148.62 |
12 | outflow | 2024-02-10 00:00:00.000 | -5508039.61335567 |
13 | outflow | 2024-12-13 00:00:00.000 | -138589.764592716 |
14 | outflow | 2024-04-09 00:00:00.000 | -5110027.77466194 |
15 | outflow | 2024-03-01 00:00:00.000 | -3972330.58029442 |
16 | outflow | 2024-07-19 00:00:00.000 | -1613.26 |
17 | inflow | 2024-10-18 00:00:00.000 | 82717.171919842 |
18 | inflow | 2024-09-27 00:00:00.000 | 213058.621777432 |
19 | outflow | 2025-01-27 00:00:00.000 | -65308.722798301 |
20 | outflow | 2024-06-09 00:00:00.000 | -4379.68 |
SocioAnalyticainflow-- outflow
Updated 2025-02-09
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
with inflow as (
SELECT
'inflow' as type,
date_trunc('d', block_timestamp) as date,
sum(amount_usd) as volume
FROM avalanche.core.ez_token_transfers
WHERE to_address IN (SELECT address FROM avalanche.core.dim_labels where project_name ilike '%beefy%'
)
AND date >= dateadd('month', -12, current_date)
GROUP BY date
UNION
SELECT
'inflow' as type,
date_trunc('d', block_timestamp) as date,
sum(amount_usd) as volume
FROM avalanche.core.ez_native_transfers
WHERE to_address IN (SELECT address FROM avalanche.core.dim_labels where project_name ilike '%beefy%'
)
AND date >= dateadd('month', -12, current_date)
GROUP BY date
)
,
outflow as (
SELECT
'outflow' as type,
date_trunc('d', block_timestamp) as date,
-1 * sum(amount_usd) as volume
FROM avalanche.core.ez_token_transfers
WHERE from_address IN (SELECT address FROM avalanche.core.dim_labels where project_name ilike '%beefy%'
)
AND date >= dateadd('month', -12, current_date)
GROUP BY date
UNION
SELECT
Last run: 3 months ago
...
1462
72KB
24s