AephiaEV weekly
Updated 2023-07-06
999
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
›
⌄
-- forked from Escape Velocity @ https://flipsidecrypto.xyz/edit/queries/1bea72c8-6d5f-4731-ba34-8ba74f00cb0d
WITH events AS (
select
--*
date_trunc('day', block_timestamp::date) as date,
count(distinct (tx_id)) as daily_events,
sum(daily_events) over (order by date) as total_events
FROM solana.core.fact_events
WHERE program_id = 'TESTWCwvEv2idx6eZVQrFFdvEJqGHfVA1soApk2NFKQ'
AND succeeded = 'true'
and block_timestamp > current_date-7 AND block_timestamp < current_date
--limit 100
group by 1
order by 1 desc
),
transactions AS (
select
--*
date_trunc('day', block_timestamp::date) as date,
max(block_timestamp) as last_updated,
count(tx_id) as txs,
sum(txs) over (order by date) as total_txs,
count(distinct signers[0]) as wallets,
count(case when log_messages::string LIKE '%GoToWarp%'
then tx_id end) as daily_warps,
count(case when log_messages::string LIKE '%CreateFleet%'
then tx_id end) as created_fleets,
count(case when log_messages::string LIKE '%DisbandFleet%'
then tx_id end) as disband_fleets,
created_fleets - disband_fleets as new_fleets,
sum(new_fleets) over (order by date) as total_fleets
Run a query to Download Data