Moefffllllwww3
Updated 2023-01-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
with tb2 AS (
select
proposer,
min(BLOCK_TIMESTAMP) AS minx
from flow.core.fact_transactions
where TX_SUCCEEDED='TRUE'
group by 1
)
select
monthname(minx) AS Month,
date_trunc('day',minx) AS day,
count(distinct proposer) AS "new addresses number"
from tb2 where minx::date between '2022-12-01' and CURRENT_DATE-1
group by 1,2
Run a query to Download Data