DATE | PERIOD | ACTIVE_CONTRACTS | |
---|---|---|---|
1 | 2025-04-27 00:00:00.000 | After Axelar Integration | 610 |
2 | 2025-04-26 00:00:00.000 | After Axelar Integration | 673 |
3 | 2025-04-25 00:00:00.000 | After Axelar Integration | 633 |
4 | 2025-04-24 00:00:00.000 | After Axelar Integration | 614 |
5 | 2025-04-23 00:00:00.000 | After Axelar Integration | 552 |
6 | 2025-04-22 00:00:00.000 | After Axelar Integration | 515 |
7 | 2025-04-21 00:00:00.000 | After Axelar Integration | 507 |
8 | 2025-04-20 00:00:00.000 | After Axelar Integration | 469 |
9 | 2025-04-19 00:00:00.000 | After Axelar Integration | 503 |
10 | 2025-04-18 00:00:00.000 | After Axelar Integration | 468 |
11 | 2025-04-17 00:00:00.000 | After Axelar Integration | 578 |
12 | 2025-04-16 00:00:00.000 | After Axelar Integration | 422 |
13 | 2025-04-15 00:00:00.000 | After Axelar Integration | 429 |
14 | 2025-04-14 00:00:00.000 | After Axelar Integration | 533 |
15 | 2025-04-13 00:00:00.000 | After Axelar Integration | 432 |
16 | 2025-04-12 00:00:00.000 | After Axelar Integration | 442 |
17 | 2025-04-11 00:00:00.000 | After Axelar Integration | 407 |
18 | 2025-04-10 00:00:00.000 | After Axelar Integration | 386 |
19 | 2025-04-09 00:00:00.000 | After Axelar Integration | 352 |
20 | 2025-04-08 00:00:00.000 | After Axelar Integration | 345 |
adriaparcerisasflow stats: contracts after axelar
Updated 23 hours 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: about 23 hours ago
...
117
7KB
33s