permaryTotal Active users for october
Updated 2024-10-15
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 aptos as (
select count(distinct sender) as "Total Active Users",
'Aptos' as blockchain
from aptos.core.fact_transactions
where block_timestamp between '2024-10-01' and '2024-10-31'
),
solana as (
select count(distinct signers[0]) as "Total Active Users",
'Solana' as blockchain
from solana.core.fact_transactions
where block_timestamp between '2024-10-01' and '2024-10-31'
),
polygon as (
select count(distinct address) as "Total Active Users",
'Polygon' as blockchain
from (
select to_address AS address, block_timestamp
from polygon.core.fact_transactions
UNION all
select from_address AS address, block_timestamp
from polygon.core.fact_transactions
) as all_addresses
where block_timestamp between '2024-10-01' and '2024-10-31'
),
avalanche as
(select count(distinct address) as "Total Active Users",
'Avalanche' as blockchain
from (
select to_address AS address, block_timestamp
from avalanche.core.fact_transactions
QueryRunArchived: QueryRun has been archived