AephiaRQ - Fees all player profiles
Updated 2024-12-21
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 scanning_fleets AS (
SELECT
player_profile
,scanning_fleets as scanning_fleet
from SOLANA.SA.SCANNING_FLEETS
)
,fees AS (
SELECT
date_trunc('day', block_timestamp::date) as date
,s.player_profile
---
,round(sum(ft.fee) / 1000000000,4) as sol_payed
from scanning_fleets s
,solana.core.fact_events fe
inner join solana.core.fact_transactions ft USING(block_timestamp, tx_id, succeeded)
WHERE program_id IN ('SAGE2HAwep459SNq61LHvjxPk4pLPEJLoMETef7f7EE')
AND succeeded = 'true'
AND instruction:accounts[1] IN (s.player_profile)
AND instruction:accounts[3] IN (s.scanning_fleet)
AND block_timestamp > current_date-30 AND block_timestamp < current_date
group by 1,2
)
SELECT * FROM fees
QueryRunArchived: QueryRun has been archived