DATETIME | TOKEN_CNT | PERC_CHANGE_CONTRACT | |
---|---|---|---|
1 | 2025-04-14 00:00:00.000 | 23000 | 41.8877 |
tkvresearchrepresentative-indigo
Updated 4 days ago
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
with a as
(select datetime,
token_cnt,
(token_cnt/lag(token_cnt,1) over (order by datetime)-1)*100 as perc_change_contract
from
(select date_trunc('week',CREATED_BLOCK_TIMESTAMP) as datetime,
count(distinct ADDRESS) as token_cnt
from ink.core.dim_contracts
group by 1))
select *
from a
where datetime = (select max(datetime) from a) - interval '7 day'
Last run: 4 days ago
1
43B
2s