superflyContribution of key users
Updated 2025-01-21
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
SELECT
'Owners' AS user_type,
COUNT(DISTINCT owner_address) AS user_count
FROM crosschain.olas.ez_service_registrations
UNION ALL
SELECT
'Donors' AS user_type,
COUNT(DISTINCT donor_address) AS user_count
FROM crosschain.olas.ez_service_donations
UNION ALL
SELECT
'Agents' AS user_type,
COUNT(DISTINCT agent_ids) AS user_count
FROM crosschain.olas.dim_registry_metadata;
QueryRunArchived: QueryRun has been archived