DAY | MARKET_MAKER | DAILY_VOLUME | |
---|---|---|---|
1 | 2025-05-06 00:00:00.000 | 54Xh....Loph | 9.738021755 |
2 | 2025-05-06 00:00:00.000 | GdcG....ZQGF | 4410.930789024 |
3 | 2025-05-06 00:00:00.000 | EmNP....eJBH | 20415.297356412 |
4 | 2025-05-06 00:00:00.000 | 7rhx....bjnQ | 567030.92130212 |
5 | 2025-05-06 00:00:00.000 | 378A....uYMG | 23994.614286265 |
6 | 2025-05-06 00:00:00.000 | GjRA....V5Tf | 10.825334664 |
7 | 2025-05-06 00:00:00.000 | 4bvs....j9JV | 2839630.06179033 |
8 | 2025-05-06 00:00:00.000 | MfDu....GVWa | 3145585.4931158 |
9 | 2025-05-06 00:00:00.000 | 3rA9....vkxn | 9918.962732636 |
10 | 2025-05-06 00:00:00.000 | 7y5d....mLW6 | 0.1033410667 |
11 | 2025-05-06 00:00:00.000 | 4GQe....zVqS | 907687.271003248 |
12 | 2025-05-06 00:00:00.000 | 96yw....818g | 68359.370909632 |
13 | 2025-05-05 00:00:00.000 | 7y5d....mLW6 | 138221.379182149 |
14 | 2025-05-05 00:00:00.000 | GjRA....V5Tf | 7.3385615 |
15 | 2025-05-05 00:00:00.000 | 378A....uYMG | 137279.747364481 |
16 | 2025-05-05 00:00:00.000 | EmNP....eJBH | 290297.890271276 |
17 | 2025-05-05 00:00:00.000 | 1f8d....uskS | 2822.81936779 |
18 | 2025-05-05 00:00:00.000 | GdcG....ZQGF | 34144.176686908 |
19 | 2025-05-05 00:00:00.000 | 3rA9....vkxn | 41232.59730779 |
20 | 2025-05-05 00:00:00.000 | MfDu....GVWa | 23233859.237704 |
dannyamahDaily Volume By Market Makers
Updated 2025-05-06
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 classified AS (
SELECT
date_trunc('hour', block_timestamp) AS hour,
block_timestamp,
tx_id,
e.signers[0] AS market_maker,
e.signers[1] AS trader,
instruction:data AS encoded_data,
utils.udf_base58_to_hex(encoded_data) AS hex_data, -- Decoded Data
livequery.utils.udf_hex_to_int(to_char(reverse(to_binary(substr(hex_data, 3 + 16, 16))))) as sold_amount,
instruction:accounts[6] AS sold_token,
livequery.utils.udf_hex_to_int(to_char(reverse(to_binary(substr(hex_data, 3 + 16 + 16, 16))))) as bought_amount,
instruction:accounts[8] AS bought_token
FROM solana.core.fact_events e
where 1 = 1
AND succeeded
AND block_timestamp >= '2024-12-10' -- Cropping to this date because there were very little transactions prior
AND program_id = '61DFfeTKM7trxYcPQCM78bJ794ddZprZpAwAnLiwTpYH'
),
asset_data AS (
SELECT
hour,
block_timestamp,
tx_id,
market_maker,
trader,
bought_amount,
CASE
WHEN bought_token = 'So11111111111111111111111111111111111111111' THEN 'So11111111111111111111111111111111111111112'
ELSE bought_token
END AS bought_token,
sold_amount,
CASE
WHEN sold_token = 'So11111111111111111111111111111111111111111' THEN 'So11111111111111111111111111111111111111112'
ELSE sold_token
Last run: 18 days ago
...
1139
65KB
60s