LTirrellgreed copy
Updated 2023-05-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
-- forked from greed @ https://flipsidecrypto.xyz/edit/queries/87cdff9e-a96b-4a9e-a686-eb3a1d7ff194
SELECT
date_trunc('hour',block_timestamp) as datetime,
count(distinct tx_id) as total_tx,
count(distinct signers[0]) as unique_signers,
count(signers[0]) as all_signers,
total_tx / all_signers as tx_per_user
from
solana.core.fact_events
where program_id =
'5vzwztHZBMekRQDzy9K1PiQrWw3qYYvfwcgapnwcdJLC'
group BY
datetime
order by datetime
Run a query to Download Data