DATE | TOKEN | VOLUME | |
---|---|---|---|
1 | 2025-02-12 00:00:00.000 | WAVAX | 29134018.83 |
2 | 2025-02-03 00:00:00.000 | WAVAX | 27509642.47 |
3 | 2025-02-10 00:00:00.000 | WAVAX | 25552827.76 |
4 | 2025-03-07 00:00:00.000 | WAVAX | 24433834.58 |
5 | 2025-03-02 00:00:00.000 | WAVAX | 23831154.27 |
6 | 2025-03-06 00:00:00.000 | WAVAX | 22606771.71 |
7 | 2025-03-03 00:00:00.000 | WAVAX | 22338207.1 |
8 | 2025-03-08 00:00:00.000 | WAVAX | 21285862.9 |
9 | 2025-03-18 00:00:00.000 | WAVAX | 20604329.64 |
10 | 2025-02-14 00:00:00.000 | WAVAX | 20483578.42 |
11 | 2025-02-15 00:00:00.000 | WAVAX | 20278932.78 |
12 | 2025-02-21 00:00:00.000 | WAVAX | 20006064.43 |
13 | 2025-02-28 00:00:00.000 | WAVAX | 19970387.84 |
14 | 2025-01-20 00:00:00.000 | USDC | 19821782.58 |
15 | 2025-02-18 00:00:00.000 | WAVAX | 19806481.4 |
16 | 2025-01-20 00:00:00.000 | WAVAX | 19652676.33 |
17 | 2025-03-11 00:00:00.000 | WAVAX | 19472205.09 |
18 | 2025-03-05 00:00:00.000 | WAVAX | 19442817.28 |
19 | 2025-02-25 00:00:00.000 | WAVAX | 19145475.08 |
20 | 2025-02-27 00:00:00.000 | WAVAX | 18804818.9 |
SniperDaily Swap Volume (Buy) [From 2025]
Updated 2025-03-20
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 pharaoh as ( select block_timestamp,
tx_hash,
origin_from_address,
pool_name,
symbol_in,
symbol_out,
case when amount_in_usd is null then amount_out_usd
when amount_out_usd is null then amount_in_usd
when amount_in_usd>=amount_out_usd then amount_in_usd
when amount_out_usd>amount_in_usd then amount_out_usd end as amount_usd
from avalanche.defi.ez_dex_swaps
where platform LIKE '%pharaoh%'
and block_timestamp::date >= '2025-01-01'
)
,
tbl as (select
trunc(block_timestamp::date,'day') as date,
symbol_out as token,
-- 'Buy' as type,
sum(amount_usd) as volume,
from pharaoh
GROUP by 1,2),
temp as (select
date,
token,
-- 'Buy' as type,
volume,
row_number() over (partition by date order by volume desc) as row_num
from tbl)
select date,
token,
volume
-- Transactions,
Last run: about 1 month ago
...
603
27KB
3s