DATE | TYPE | VOLUME | |
---|---|---|---|
1 | 2025-03-07 00:00:00.000 | Trading by the Token Creator | 9116.756357775 |
2 | 2025-02-15 00:00:00.000 | Non-Creator | 918930.436175954 |
3 | 2025-03-18 00:00:00.000 | Trading by the Token Creator | 1160.507814416 |
4 | 2025-01-30 00:00:00.000 | Non-Creator | 1828304.41284831 |
5 | 2025-03-20 00:00:00.000 | Non-Creator | 51464.98571279 |
6 | 2025-01-31 00:00:00.000 | Trading by the Token Creator | 102673.582151469 |
7 | 2025-02-21 00:00:00.000 | Trading by the Token Creator | 71349.708029562 |
8 | 2025-03-08 00:00:00.000 | Trading by the Token Creator | 2606.574396544 |
9 | 2025-03-18 00:00:00.000 | Non-Creator | 10590.611592416 |
10 | 2025-02-07 00:00:00.000 | Non-Creator | 511801.699127381 |
11 | 2025-02-18 00:00:00.000 | Non-Creator | 518127.965202092 |
12 | 2025-03-15 00:00:00.000 | Non-Creator | 8799.255685636 |
13 | 2025-03-06 00:00:00.000 | Non-Creator | 164207.529955915 |
14 | 2025-02-25 00:00:00.000 | Trading by the Token Creator | 5547.96019445 |
15 | 2025-02-17 00:00:00.000 | Trading by the Token Creator | 46640.670726595 |
16 | 2025-02-20 00:00:00.000 | Non-Creator | 404679.860237029 |
17 | 2025-03-13 00:00:00.000 | Trading by the Token Creator | 10605.806300492 |
18 | 2025-01-30 00:00:00.000 | Trading by the Token Creator | 188378.207507025 |
19 | 2025-03-01 00:00:00.000 | Trading by the Token Creator | 2085.568660135 |
20 | 2025-02-11 00:00:00.000 | Non-Creator | 711475.124475216 |
hessDaily Volume by Token Creator vs. Non-Creator
Updated 2025-03-24
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 base as (select a.block_timestamp,
a.tx_hash,
origin_from_address,
'0x' || substr(topics[1],27) as token_address,
'0x' || substr(topics[2],27) as creator_address,
'' as mcapInEth,
regexp_substr_all(substr(input_data,11, len(input_data)), '.{64}') as segmented,
TRIM(TRY_HEX_DECODE_STRING(segmented[8]::STRING), '\x00') AS name,
TRIM(TRY_HEX_DECODE_STRING(segmented[10]::STRING), '\x00') AS symbol,
TRIM(TRY_HEX_DECODE_STRING(segmented[12]::STRING), '\x00') AS description,
REGEXP_REPLACE(SUBSTRING(segmented[2], 3), '^0+', '') AS cleaned_data,
livequery.utils.udf_hex_to_int(cleaned_data)/pow(10,18) as amount
from ronin.core.fact_event_logs a join ronin.core.fact_transactions b on a.tx_hash = b.tx_hash
where topics[0] = '0xf372df0af3c16a1deb41b25691dd807a3836ba8f443e83d24c1406ae3748232e'
and a. TX_SUCCEEDED = 'TRUE'
and origin_to_address = '0xa54b0184d12349cf65281c6f965a74828ddd9e8f'
)
,
base_ii as (select a.tx_hash,
b.name,
b.symbol,
b.description,
contract_address,
token_address,
creator_address
from ronin.core.ez_token_transfers a left outer join base b on a.contract_address = b.token_address
where origin_to_address = '0xa54b0184d12349cf65281c6f965a74828ddd9e8f')
,
token_name as ( select DISTINCT tx_hash,
name,
symbol,
description,
token_address,
creator_address
from base_ii)
,
Last run: 18 days ago
...
126
8KB
32s