permary-- 2. Service Donation Analysis
Updated 2024-11-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
›
⌄
WITH donation_metrics AS (
SELECT
DATE_TRUNC('month', block_timestamp) as month,
COUNT(DISTINCT service_id) as services_receiving_donations,
COUNT(DISTINCT donor_address) as unique_donors,
SUM(eth_amount) as total_eth_donated,
SUM(eth_amount_usd) as total_usd_donated,
AVG(eth_amount) as avg_donation_size_eth
FROM crosschain.olas.ez_service_donations
GROUP BY 1
ORDER BY 1
)
SELECT
month,
services_receiving_donations,
unique_donors,
total_eth_donated,
total_usd_donated,
avg_donation_size_eth,
total_eth_donated / NULLIF(services_receiving_donations, 0) as avg_eth_per_service
FROM donation_metrics;
QueryRunArchived: QueryRun has been archived