h4wkoverall stat daily
Updated 2024-12-25
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
›
⌄
-- forked from overall stat @ https://flipsidecrypto.xyz/studio/queries/88fec4c8-f99c-4e57-a4f0-f5a533b2c30f
-- forked from base @ https://flipsidecrypto.xyz/studio/queries/af193c08-fc55-4a2a-b80c-e721d56f9e30
with latest_price as (
select hour::date as price_date,
token_address,
symbol,
avg(price) as price
from solana.price.ez_prices_hourly
where price_date = CURRENT_DATE - 1
group by 1,2,3
UNION
select hour::date as price_date,
'So11111111111111111111111111111111111111111' as token_address,
symbol,
avg(price) as price
from solana.price.ez_prices_hourly
where price_date = CURRENT_DATE - 1
and token_address = 'So11111111111111111111111111111111111111112'
group by 1,2,3
)
, betting as (
select
a.block_timestamp,
a.tx_id,
tx_from as user_address,
amount,
amount * price as amount_usd,
symbol
from (select * from solana.core.fact_transactions where block_timestamp >= '2024-08-27') a
join lateral flatten (input => log_messages) logs
join ( select * from solana.core.fact_transfers
where block_timestamp >= '2024-08-27' and tx_to = 'EeWju3Any8g86YN3Exdm4BBEKkwKq4AicS9eQN7QswXV')
c using (tx_id, block_timestamp)
join latest_price on (mint = token_address)
QueryRunArchived: QueryRun has been archived