MLDZMNDelivery rate 2
Updated 2024-10-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
-- forked from Delivery rate @ https://flipsidecrypto.xyz/studio/queries/d15500b9-c829-4e6a-b22d-c8361399bb6a
select
date_trunc('month',BLOCK_TIMESTAMP) as month,
count(distinct case when EVENT_NAME = 'Request' then REQUEST_ID end) as requests,
count(distinct case when EVENT_NAME = 'Deliver' then REQUEST_ID end) as delivers,
delivers/requests * 100 as share
from crosschain.olas.fact_mech_activity
group by 1
order by 1 desc
QueryRunArchived: QueryRun has been archived