keean82continental-rose
Updated 2024-09-05
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 total_buys AS (
SELECT
s.block_timestamp AS swap_timestamp,
s.swapper,
s.tx_id,
s.swap_to_mint,
s.swap_from_mint,
s.swap_from_amount
FROM
solana.defi.fact_swaps s
WHERE
s.block_timestamp > '2024-09-05 00:00:00'
AND s.swap_from_mint = 'So11111111111111111111111111111111111111112'
AND s.swap_from_amount > 0.1
AND s.succeeded = TRUE
),
token_creations AS (
SELECT
mint AS created_mint,
block_timestamp AS creation_timestamp
FROM
solana.defi.fact_token_mint_actions
WHERE
event_type = 'initializeMint2'
AND block_timestamp > '2024-09-05 00:00:00'
),
recent_buys AS (
SELECT
tb.swap_timestamp,
tb.swapper,
tb.tx_id,
tb.swap_to_mint,
tb.swap_from_mint,
tb.swap_from_amount,
tc.creation_timestamp
FROM
QueryRunArchived: QueryRun has been archived