NO_TXN_OLAS | NO_TXN_TOTAL | PERCENTAGE_AUTONOMOUS | PERCENTAGE_OTHER | |
---|---|---|---|---|
1 | 5879126 | 9138815 | 64.3314 | 35.6686 |
Flipside Team olas safe 1
Updated 2025-04-13
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
›
⌄
with t1 as (select
'Autonolas' as type,
count(distinct tx_hash) as no_txn_olas
from crosschain.olas.fact_service_events
where BLOCKCHAIN = 'gnosis'
),
t2 as (select
distinct CONTRACT_ADDRESS
from gnosis.core.fact_event_logs
where TOPICS[0] in ('0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e',
'0x6895c13664aa4f67288b25d7a21d7aaa34916e355fb9b6fae0a139a9085becb8',
'0x4bda649efe6b98b0f9c1d5e859c29e20910f45c66dabfe6fad4a4881f7faf9cc')
),
--where tx_hash = '0xca888b5964f07e6e1a47a8d15b5d01f22842e0c40f0e4cd09b8182a8bcbcfaad'
t3 as (select
count(tx_hash) as no_txn_total
from gnosis.core.fact_transactions
where TO_ADDRESS in (select CONTRACT_ADDRESS from t2)
and STATUS = 'SUCCESS'
--where TOPICS[0] = '0x442e715f626346e8c54381002da614f62bee8d27386535b2521ec8540898556e'
)
select
no_txn_olas,
no_txn_total,
no_txn_olas/no_txn_total * 100 as percentage_Autonomous,
100 - percentage_Autonomous as Percentage_other
from t1,t3
Last run: 10 days agoAuto-refreshes every 12 hours
1
35B
203s