DATE | PAIR_NAME | # of Trader | Trade Volume (USD) | # oF Trades | |
---|---|---|---|---|---|
1 | 2024-05-10 00:00:00.000 | USDB-WETH | 253 | 2086646.02561651 | 253 |
2 | 2024-05-28 00:00:00.000 | USDB-WETH | 524 | 65648281.8563617 | 524 |
3 | 2024-05-03 00:00:00.000 | USDB-WETH | 502 | 5540528.75736818 | 502 |
4 | 2024-06-21 00:00:00.000 | ezETH-WETH | 12 | 37544.370246325 | 12 |
5 | 2024-07-19 00:00:00.000 | USDB-WETH | 17 | 59794.493391629 | 17 |
6 | 2024-03-05 00:00:00.000 | USDB-WETH | 63 | 133367.885641548 | 63 |
7 | 2024-08-23 00:00:00.000 | USDB-WETH | 8 | 119862.946693062 | 8 |
8 | 2024-04-14 00:00:00.000 | ezETH-WETH | 7 | 483299.506210841 | 7 |
9 | 2024-05-30 00:00:00.000 | USDB-USDe | 4 | 92125.114533105 | 4 |
10 | 2024-05-13 00:00:00.000 | ezETH-WETH | 9 | 504177.206211382 | 9 |
11 | 2024-07-24 00:00:00.000 | USDB-BLAST | 2 | 440.206893967 | 2 |
12 | 2024-05-08 00:00:00.000 | USDB-BAG | 1 | 0.9247319706 | 1 |
13 | 2024-03-06 00:00:00.000 | WETH-mwstETH-WPUNKS:40 | 1 | 10537.513862063 | 1 |
14 | 2024-11-21 00:00:00.000 | WETH-BLAST | 1 | 0.4299392862 | 1 |
15 | 2024-04-30 00:00:00.000 | WETH-WBTC | 2 | 4295.807907654 | 2 |
16 | 2024-06-04 00:00:00.000 | USDB-USDe | 117 | 5357876.03310441 | 117 |
17 | 2024-06-14 00:00:00.000 | USDB-USDe | 9 | 13373.77620598 | 9 |
18 | 2024-05-03 00:00:00.000 | WETH-mwstETH-WPUNKS:40 | 2 | 473.395199377 | 2 |
19 | 2024-05-19 00:00:00.000 | WETH-WBTC | 3 | 163.578919886 | 3 |
20 | 2024-04-03 00:00:00.000 | USDB-PAC | 1 | 79.165644238 | 1 |
rezarwzDaily volume
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
...
896
54KB
426s