No Data to Display
adriaparcerisasFourthwall deployed contracts 2: all
Updated 2025-03-31
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
eth as (
select
trunc(block_timestamp,'day') as "Date",
count(distinct decoded_log:proxy) as "# of contracts deployed"
from ethereum.core.fact_decoded_event_logs x
where x.contract_address=lower('0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0')
AND event_name ilike '%proxydeployed%'
and block_timestamp >=current_date-INTERVAL '{{number_of_months}} MONTHS'
group by 1 order by 1 asc
),
poly as (
select
trunc(block_timestamp,'day') as "Date",
count(distinct decoded_log:proxy) as "# of contracts deployed"
from polygon.core.fact_decoded_event_logs x
where x.contract_address=lower('0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0')
AND event_name ilike '%proxydeployed%'
and block_timestamp >=current_date-INTERVAL '{{number_of_months}} MONTHS'
group by 1 order by 1 asc
),
avax as (
select
trunc(block_timestamp,'day') as "Date",
count(distinct decoded_log:proxy) as "# of contracts deployed"
from avalanche.core.fact_decoded_event_logs x
where x.contract_address=lower('0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0')
AND event_name ilike '%proxydeployed%'
and block_timestamp >=current_date-INTERVAL '{{number_of_months}} MONTHS'
group by 1 order by 1 asc
),
arb as (
select
Last run: 29 days agoAuto-refreshes every 3 hours
0
2B
15s