DIRECTION | COUNT(WALLET_ADDRESS) | |
---|---|---|
1 | Hold | 188 |
2 | Partial Hold | 5 |
3 | Increase | 179 |
BlazeWEN direction new wallets
Updated 2024-02-12
999
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 JUP direction new wallets @ https://flipsidecrypto.xyz/edit/queries/7ebf1906-2e07-43a3-8be6-9a565b701064
-- forked from PYTH direction new wallets @ https://flipsidecrypto.xyz/edit/queries/b8829d5a-b04a-4c22-9f28-d3bb0d18d98c
WITH airdrops AS (
SELECT DISTINCT
block_timestamp,
tx_id
FROM solana.core.fact_events
WHERE succeeded
AND program_id = 'meRjbQXFNf5En86FXT2YPz1dQzLj4Yb3xK8u1MVgqpb'
and block_timestamp<'2024-01-30'
),
claimers AS (
SELECT
tx_to as wallet_address,
sum(amount) AS total_pyth
FROM solana.core.fact_transfers
JOIN airdrops USING (block_timestamp, tx_id)
WHERE lower(mint) = lower('WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk')
GROUP BY 1
),
new_wallets as(
select signer as wallet_address
from solana.core.ez_signers
where
lower(first_program_id)= lower('meRjbQXFNf5En86FXT2YPz1dQzLj4Yb3xK8u1MVgqpb')
and first_tx_date<'2024-01-30'
),
swaps as(
select
c.wallet_address,
sum(case
when lower(swap_from_mint)=lower('WENWENvqqNya429ubCdR81ZmD69brwQaaBYY6p3LCpk') then swap_from_amount
else 0
end) as send,
Last run: about 1 year ago
3
50B
148s