DAY | MARKET_MAKER | DAILY_VOLUME | |
---|---|---|---|
1 | 2025-06-13 00:00:00.000 | 378A....uYMG | 72088.896746665 |
2 | 2025-06-13 00:00:00.000 | EjwY....72yp | 10165.234695859 |
3 | 2025-06-13 00:00:00.000 | 3rA9....vkxn | 34404.248995861 |
4 | 2025-06-13 00:00:00.000 | 9Sdq....1X8p | 28040.157896362 |
5 | 2025-06-13 00:00:00.000 | 9BB7....mUPG | 2044.693074894 |
6 | 2025-06-13 00:00:00.000 | GjRA....V5Tf | 461276.536579918 |
7 | 2025-06-13 00:00:00.000 | AasQ....GmDX | 622078.972882803 |
8 | 2025-06-13 00:00:00.000 | MfDu....GVWa | 11485896.3988974 |
9 | 2025-06-13 00:00:00.000 | CH8p....4Hkz | 54123.147295363 |
10 | 2025-06-13 00:00:00.000 | 6nv3....pKLu | 1761.195870744 |
11 | 2025-06-13 00:00:00.000 | BMnT....3iLJ | 2611197.35951157 |
12 | 2025-06-13 00:00:00.000 | Cifh....e5dD | 1824681.04265015 |
13 | 2025-06-13 00:00:00.000 | 8Ugt....zofY | 24849.567433216 |
14 | 2025-06-13 00:00:00.000 | 7rhx....bjnQ | 5461764.95684289 |
15 | 2025-06-13 00:00:00.000 | 4GQe....zVqS | 3223015.49703577 |
16 | 2025-06-12 00:00:00.000 | CH8p....4Hkz | 243327.272846488 |
17 | 2025-06-12 00:00:00.000 | EjwY....72yp | 11051.404876056 |
18 | 2025-06-12 00:00:00.000 | 6nv3....pKLu | 6098.604641108 |
19 | 2025-06-12 00:00:00.000 | 7rhx....bjnQ | 6679155.523279 |
20 | 2025-06-12 00:00:00.000 | GgWT....L9gV | 19.979565791 |
dannyamahDaily Volume By Market Makers
Updated 4 days ago
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: 4 days ago
...
1715
99KB
52s