0xHaM-dDaily Active Autonomous Services copy
Updated 2024-10-01
999
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
33
34
35
36
›
⌄
-- forked from MLDZMN / Daily Active Autonomous Services @ https://flipsidecrypto.xyz/MLDZMN/q/9u9HmWdL4ioR/daily-active-autonomous-services
with daily_transactions AS (
SELECT
DATE_TRUNC('d', BLOCK_TIMESTAMP) AS day,
MULTISIG_ADDRESS AS service_multisig_address,
'ethereum' AS chain
FROM
crosschain.olas.fact_service_events
where
BLOCKCHAIN = 'ethereum'
UNION
ALL
SELECT
DATE_TRUNC('d', BLOCK_TIMESTAMP) AS day,
MULTISIG_ADDRESS AS service_multisig_address,
'polygon' AS chain
FROM
crosschain.olas.fact_service_events
where
BLOCKCHAIN = 'polygon'
UNION
ALL
SELECT
DATE_TRUNC('d', BLOCK_TIMESTAMP) AS day,
MULTISIG_ADDRESS AS service_multisig_address,
'gnosis' AS chain
FROM
crosschain.olas.fact_service_events
where
BLOCKCHAIN = 'gnosis'
UNION
ALL
SELECT
DATE_TRUNC('d', BLOCK_TIMESTAMP) AS day,
MULTISIG_ADDRESS AS service_multisig_address,
QueryRunArchived: QueryRun has been archived