0-MIDs-rate poly
Updated 2024-07-13
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
›
⌄
select date_trunc('week',BLOCK_TIMESTAMP) as week
,case
when TX_STATUS='SUCCESS' then 'SUCCESS' else 'FAIL' end as success_rate
,count(distinct TX_HASH) as swaps
from polygon.core.ez_decoded_event_logs
where ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and EVENT_NAME='LiFiGenericSwapCompleted'
and DECODED_LOG:integrator='robinhood'
group by 1,2
QueryRunArchived: QueryRun has been archived