DATE | PERIOD | ACTIVE_CONTRACTS | |
---|---|---|---|
1 | 2025-03-30 00:00:00.000 | After Axelar Integration | 148 |
2 | 2025-03-29 00:00:00.000 | After Axelar Integration | 137 |
3 | 2025-03-28 00:00:00.000 | After Axelar Integration | 312 |
4 | 2025-03-27 00:00:00.000 | After Axelar Integration | 330 |
5 | 2025-03-26 00:00:00.000 | After Axelar Integration | 329 |
6 | 2025-03-25 00:00:00.000 | After Axelar Integration | 345 |
7 | 2025-03-24 00:00:00.000 | After Axelar Integration | 387 |
8 | 2025-03-23 00:00:00.000 | After Axelar Integration | 342 |
9 | 2025-03-22 00:00:00.000 | After Axelar Integration | 322 |
10 | 2025-03-21 00:00:00.000 | After Axelar Integration | 334 |
11 | 2025-03-20 00:00:00.000 | After Axelar Integration | 370 |
12 | 2025-03-19 00:00:00.000 | After Axelar Integration | 362 |
13 | 2025-03-18 00:00:00.000 | After Axelar Integration | 377 |
14 | 2025-03-17 00:00:00.000 | After Axelar Integration | 317 |
15 | 2025-03-16 00:00:00.000 | After Axelar Integration | 268 |
16 | 2025-03-15 00:00:00.000 | After Axelar Integration | 280 |
17 | 2025-03-14 00:00:00.000 | After Axelar Integration | 323 |
18 | 2025-03-13 00:00:00.000 | After Axelar Integration | 292 |
19 | 2025-03-12 00:00:00.000 | After Axelar Integration | 308 |
20 | 2025-03-11 00:00:00.000 | After Axelar Integration | 341 |
adriaparcerisasflow stats: contracts after axelar
Updated 5 days ago
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 news AS (
SELECT DISTINCT event_contract AS new_contract,
MIN(trunc(block_timestamp, 'day')) AS debut
FROM flow.core.fact_events
GROUP BY 1
),
evm_news AS (
SELECT DISTINCT contract_address AS new_contract,
MIN(trunc(block_timestamp, 'day')) AS debut
FROM flow.core_evm.fact_event_logs
GROUP BY 1
),
combined_news AS (
SELECT new_contract, debut FROM news
UNION ALL
SELECT new_contract, debut FROM evm_news
),
final as (
SELECT
trunc(x.block_timestamp, 'day') AS date,
COUNT(DISTINCT x.event_contract) AS active_contracts
FROM flow.core.fact_events x
WHERE x.tx_succeeded = 'true' and date<trunc(current_date,'day')
GROUP BY 1
UNION ALL
SELECT
trunc(y.block_timestamp, 'day') AS date,
COUNT(DISTINCT y.contract_address) AS active_contracts
FROM flow.core_evm.fact_event_logs y where date>'2020-01-01' and date<trunc(current_date,'day')
GROUP BY 1
ORDER BY date ASC
)
select date, case when date<'2025-01-22' then 'Before Axelar Integration' else 'After Axelar Integration' end as period, sum(active_contracts) as active_contracts from final where date>='2025-01-01' group by 1,2 order by 1 desc
Last run: 5 days ago
89
5KB
13s