LTirrellgreed
Updated 2023-05-12
99
1
2
3
4
5
6
7
8
9
10
›
⌄
SELECT
max(block_timestamp) as latest_timestamp,
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'
Run a query to Download Data