0xgabeprecise-jade
Updated 2024-11-29
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 claim_txs as (
select distinct
block_timestamp
, tx_id
from solana.core.fact_events
where succeeded
and program_id = 'meRjbQXFNf5En86FXT2YPz1dQzLj4Yb3xK8u1MVgqpb'
and block_timestamp < '2024-02-01'
),
claimers as (
select
tx_to
from solana.core.fact_transfers
inner join claim_txs
using(block_timestamp, tx_id)
where mint = 'JUPyiwrYJFskUPiHa7hkeR8VUtAeFoSYbKedZNsDvCN'
and tx_id in (SELECT tx_id from claim_txs)
and block_timestamp < '2024-02-01'
)
SELECT
swapper as onchain_dumpoor,
swap_from_amount as total_dumped
FROM solana.defi.fact_swaps
WHERE succeeded = TRUE
QueryRunArchived: QueryRun has been archived