N_TXNS | N_USERS | FEE_SOL | |
---|---|---|---|
1 | 93486587 | 21532 | 2191.372733 |
SocioCryptoNumber of Transactions copy
Updated 2024-03-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
›
⌄
-- forked from Number of Transactions @ https://flipsidecrypto.xyz/edit/queries/e140b56d-551c-46cb-b31e-c7e5cceac5f5
-- program_id = ' PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY'
SELECT
count(DISTINCT a.tx_id ) as n_txns,
count(DISTINCT a.signers[0]) as n_users,
sum(fee/1e9) as fee_sol
FROM solana.core.fact_transactions a
INNER JOIN solana.core.fact_events b using(tx_id)
WHERE program_id = 'PhoeNiXZ8ByJGLkxNfZRnkUfjvmuYqLR89jjFHGqdXY'
AND block_timestamp::date >= current_date - interval '6 months'
AND SUCCEEDED='true'
Last run: over 1 year ago
1
30B
831s