check_skedSol Inscriptions - Count and Size
Updated 2023-11-27
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
all_txs as (
select distinct
block_timestamp
, tx_id
from solana.core.fact_events
inner join solana.core.fact_transactions
using(block_timestamp, tx_id, succeeded)
where succeeded
and program_id = 'Leg1xVbrpq5gY6mprak3Ud4q4mBwcJi5C9ZruYjWv7n'
and array_contains('Program log: Instruction: CreateInscription' ::variant, log_messages)
and block_timestamp > '2023-11-13'
),
aggregated as (
select
date_trunc('day', block_timestamp) as date
, count(1) as inscriptions
, sum(inscriptions) over (order by date) as cumulative
from all_txs
group by 1
)
select *
from aggregated
order by date
Run a query to Download Data