DATE | VOLUME_USD | CUM_VOLUME_USD | |
---|---|---|---|
1 | 2025-02-28 00:00:00.000 | 341200.375897692 | 906968.304340747 |
2 | 2025-02-26 00:00:00.000 | 105820.595537109 | 492881.865347899 |
3 | 2025-02-25 00:00:00.000 | 387061.26981079 | 387061.26981079 |
4 | 2025-02-27 00:00:00.000 | 72886.063095156 | 565767.928443055 |
hrst79reg volume 25frb-1march
Updated 2025-04-01
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 tokens_tab as (
select
DISTINCT token_Address
from ink.price.ez_prices_hourly
UNION all
SELECT
*
from values('0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee') as a (token_Address)
),
price_tab as(
select
hour,
token_address,
symbol,
price ,
DECIMALS
from
ink.price.ez_prices_hourly
union all
select
hour,
'0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee' as token_Address,
'ETH' as symbol,
price,
18 as DECIMALS
from
ink.price.ez_prices_hourly
where token_address = '0x4200000000000000000000000000000000000006'
)
,
Last run: 25 days ago
4
246B
8s