DATE | USER_STATUS | # of Positions | Position Volume(USD) | |
---|---|---|---|---|
1 | 2024-09-27 00:00:00.000 | Degen user | 10 | 127183.426146814 |
2 | 2024-06-05 00:00:00.000 | Normie user | 272 | 1489551.8332575 |
3 | 2024-05-11 00:00:00.000 | Degen user | 132 | 3191897.88981324 |
4 | 2024-06-08 00:00:00.000 | Normie user | 348 | 532301.554573342 |
5 | 2024-03-23 00:00:00.000 | Normie user | 22 | 99431.005760764 |
6 | 2024-05-21 00:00:00.000 | Degen user | 141 | 4579486.38190736 |
7 | 2024-03-19 00:00:00.000 | Degen user | 14 | 72570.167196346 |
8 | 2024-08-28 00:00:00.000 | Degen user | 2 | 882.949739535 |
9 | 2024-12-18 00:00:00.000 | Normie user | 1 | 0.02220900674 |
10 | 2024-09-10 00:00:00.000 | Degen user | 6 | 127.933530552 |
11 | 2024-05-15 00:00:00.000 | Degen user | 148 | 9657396.46201392 |
12 | 2024-05-30 00:00:00.000 | Degen user | 134 | 6976194.53235859 |
13 | 2024-09-28 00:00:00.000 | Degen user | 17 | 118440.324064536 |
14 | 2024-03-15 00:00:00.000 | Normie user | 32 | 82124.070738155 |
15 | 2024-03-16 00:00:00.000 | Degen user | 12 | 39473.344772299 |
16 | 2024-09-15 00:00:00.000 | Degen user | 9 | 2348.007400802 |
17 | 2024-11-23 00:00:00.000 | Normie user | 4 | 2529.074169405 |
18 | 2025-02-07 00:00:00.000 | Degen user | 11 | 6932.571456298 |
19 | 2024-09-30 00:00:00.000 | Normie user | 13 | 176103.327898999 |
20 | 2024-06-17 00:00:00.000 | Degen user | 349 | 10012101.6080777 |
rezarwzDegen Volume Ratio
Updated 2025-03-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
›
⌄
with pool_Address as (
SELECT
DISTINCT DECODED_LOG:pool as pool_ca,
DECODED_LOG:token0 as token0_ca,
DECODED_LOG:token1 as token1_ca
FROM
blast.core.ez_decoded_event_logs
where
tx_hash in (
SELECT
TX_HASH
from
blast.core.fact_traces
WHERE
TYPE ILIKE 'create%'
AND to_address IS NOT NULL
AND input IS NOT NULL
AND input != '0x'
AND tx_status = 'SUCCESS'
AND trace_status = 'SUCCESS'
and to_address in(
SELECT
lo2.decoded_log:pool as pool
FROM
blast.core.ez_decoded_event_logs lo
inner join blast.core.ez_decoded_event_logs lo2 on lo2.tx_hash = lo.tx_hash
WHERE
lo.contract_Address = '0x121b5ac4de4a3e6f4171956bc26ceda40cb61a56'
and lo.event_name = 'OpenPosition'
and lo2.event_name = 'Collect'
and lo2.CONTRACT_NAME is not null
)
)
and event_name = 'PoolCreated'
and TX_STATUS = 'SUCCESS'
),
Last run: about 2 months ago
...
543
32KB
915s