DATE | Amount (RON) | Amount (USD) | |
---|---|---|---|
1 | 2025-02-01 00:00:00.000 | 34515.53620528 | 51369.383935807 |
2 | 2025-01-27 00:00:00.000 | 172562.688458499 | 261112.884467371 |
3 | 2025-02-04 00:00:00.000 | 14567.285179097 | 15893.562437149 |
4 | 2025-01-28 00:00:00.000 | 116145.14036754 | 175984.583485865 |
5 | 2025-02-11 00:00:00.000 | 7954.813385563 | 9199.31 |
6 | 2025-01-24 00:00:00.000 | 188460.784043646 | 313391.348527592 |
7 | 2025-01-29 00:00:00.000 | 58181.3796101 | 85145.291017544 |
8 | 2025-02-03 00:00:00.000 | 3244.295414582 | 3566.061804966 |
9 | 2025-01-21 00:00:00.000 | 274425.341151212 | 473523.34 |
10 | 2025-02-05 00:00:00.000 | 11630.49105116 | 12054.893419402 |
11 | 2025-01-25 00:00:00.000 | 236184.554599204 | 383558.445424476 |
12 | 2025-02-07 00:00:00.000 | 8287.612606185 | 8716.91 |
13 | 2025-02-12 00:00:00.000 | 20481.986380925 | 23747.66721 |
14 | 2025-02-09 00:00:00.000 | 6309.664801972 | 6889.8483375 |
15 | 2025-02-10 00:00:00.000 | 12740.06800682 | 14120.11 |
16 | 2025-01-31 00:00:00.000 | 29877.898183815 | 45608.125683888 |
17 | 2025-02-08 00:00:00.000 | 3847.050400475 | 4062.6 |
18 | 2025-02-02 00:00:00.000 | 10024.350496051 | 13370.493683716 |
19 | 2025-01-30 00:00:00.000 | 57209.312080985 | 86306.96986168 |
20 | 2025-01-26 00:00:00.000 | 148523.651998205 | 240584.298621387 |
hessDaily Purchased Amount (Self-Purchased)
Updated 2025-02-12
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
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
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'
)
select block_timestamp::date as date,
sum(amount) as "Amount (RON)",
sum(amount_usd) as "Amount (USD)"
from ronin.core.ez_native_transfers
where tx_hash in (select tx_hash from base)
group by 1
Last run: about 2 months ago
23
1KB
3s