Pine AnalyticsWLFI Token Sale - 2
Updated 2024-10-17
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
›
⌄
-- forked from WLFI Token Sale - 1 @ https://flipsidecrypto.xyz/studio/queries/65916c49-0971-4a51-9149-aa3de4c3fb6f
with tab1 as (
SELECT
tx_hash
FROM ethereum.core.fact_event_logs
where contract_address LIKE lower('0xe217E15b3C19cC0427F9492dC3bcfe8220aFAD10')
AND origin_function_signature like '0xf496a610'
AND block_timestamp > '2024-10-10'
)
SELECT
sum(raw_amount / power(10,18)) * 0.015 as purchase_volume_usd,
count(DISTINCT tx_hash) as events,
count(DISTINCT origin_from_address) as buyers
FROM ethereum.core.fact_token_transfers
where tx_hash in (SELECT * from tab1)
AND contract_address LIKE lower('0xdA5e1988097297dCdc1f90D4dFE7909e847CBeF6')
AND block_timestamp > '2024-10-10'
QueryRunArchived: QueryRun has been archived