Flipside TeamTransfers
Updated 2025-03-22
999
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
-------------------- Dates --------------------
dates as (
select
date::date as halving_date,
year as halving_year,
number as halving_number,
label as halving_label
from (
values
('2012-11-28', '2012', '1st Halving', '2012 Halving'),
('2016-07-09', '2016', '2nd Halving', '2016 Halving'),
('2020-05-11', '2020', '3rd Halving', '2020 Halving'),
('2024-04-20', '2024', '4th Halving', '2024 Halving')
) t(date, year, number, label)
),
-------------------- Flows --------------------
inflows as (
select
block_timestamp::date as date,
sum(value) as volume
from
bitcoin.core.fact_outputs
group by
date
),
outflows as (
select
block_timestamp::date as date,
sum(value) as volume
from
bitcoin.core.fact_inputs
group by
date
),
-------------------- 2012 --------------------
Auto-refreshes every 24 hours
QueryRunArchived: QueryRun has been archived