DATE | USD Volume | CHANGE_7D | CHANGE_30D | |
---|---|---|---|---|
1 | 2025-03-03 00:00:00.000 | 162588.189168226 | -33.779473709 | -79.97764902 |
tkvresearchyielding-ivory
Updated 2025-03-11
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
›
⌄
--fork from saleh code
with lst_eth_price as (
select
hour::date as price_date,
avg(price) as eth_price
from ethereum.price.ez_prices_hourly
where symbol ='ETH'
and hour::date >= '2024-12-01'
and blockchain = 'ethereum'
and token_address is null
group by 1
)
,lst_eth_price_one as (
select top 1
hour::date as price_date,
avg(price) as eth_price
from ethereum.price.ez_prices_hourly
where symbol ='ETH'
and hour::date >= '2024-12-01'
and blockchain = 'ethereum'
and token_address is null
group by 1
order by hour::date desc
)
,lst_deposit as (
with lst_wallet as (
select
tx_hash
,to_address as wallet
from ink.core.fact_traces
where input='0x'
and type='CALL'
)
select
block_timestamp::date as date_a
,tx_hash
Last run: about 1 month ago
1
73B
13s