messariAtlas - Accounts Created
Updated 2024-01-04
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 accts as (
select
block_timestamp :: date as day,
receiver_id,
actions ['predecessor_id'],
status_value['Failure'] as fail
from
near.core.fact_receipts
where
fail is null
--and day >= '2024-01-01'
qualify row_number() over (
partition by receiver_id
order by
block_timestamp
) = 1
),
summary as (
select
day,
count(*) as wallets_created,
sum(count(*)) over (
order by
day
) total_wallets
from
accts
group by
1
)
select
*
from
summary
order by
1 desc;
QueryRunArchived: QueryRun has been archived