PAIR_NAME | POSITION_STATUS | # of Positions | % of total positions | |
---|---|---|---|---|
1 | OHNO-WETH | Losing Positions | 11 | 100 |
2 | ORBIT-WETH | Losing Positions | 57 | 90.4762 |
3 | ORBIT-WETH | Profitable Positions | 5 | 7.9365 |
4 | PUMP-WETH | Losing Positions | 125 | 73.5294 |
5 | PUMP-WETH | Profitable Positions | 36 | 21.1765 |
6 | USDB-BAG | Losing Positions | 141 | 66.5094 |
7 | USDB-BAG | Profitable Positions | 24 | 11.3208 |
8 | USDB-BLAST | Losing Positions | 74 | 61.157 |
9 | USDB-BLAST | Profitable Positions | 43 | 35.5372 |
10 | USDB-OLE | Losing Positions | 2 | 10 |
11 | USDB-PAC | Losing Positions | 10 | 66.6667 |
12 | USDB-PAC | Profitable Positions | 4 | 26.6667 |
13 | USDB-PTC | Losing Positions | 1 | 50 |
14 | USDB-USDe | Losing Positions | 987 | 95.7323 |
15 | USDB-USDe | Profitable Positions | 35 | 3.3948 |
16 | USDB-WETH | Losing Positions | 47328 | 87.7826 |
17 | USDB-WETH | Profitable Positions | 6478 | 12.0152 |
18 | USDB-axlUSDC | Losing Positions | 1 | 100 |
19 | WETH-BAG | Losing Positions | 5 | 100 |
20 | WETH-BLAST | Losing Positions | 24 | 80 |
rezarwzProfit/Loss Status of Closed Positions by Pair
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 1 month ago
37
2KB
458s