winnie-fseverest4 copy
Updated 2024-07-23
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
›
⌄
-- forked from MLDZMN / everest4 @ https://flipsidecrypto.xyz/MLDZMN/q/mnGuK9jsPwed/everest4
-- forked from everest3 @ https://flipsidecrypto.xyz/edit/queries/0f24e879-ff12-4496-be73-b51701ca4979
with tb1 as (select
BLOCK_TIMESTAMP,
tx_hash,
DECODED_LOG:multisig as multisig,
DECODED_LOG:owner as owner,
DECODED_LOG:serviceId as serviceId,
DECODED_LOG:reward / 1e18 as reward
from gnosis.core.ez_decoded_event_logs
where CONTRACT_ADDRESS = '0x5add592ce0a1b5dcecebb5dcac086cd9f9e3ea5c'
and EVENT_NAME = 'ServiceUnstaked'
)
select
serviceId,
round(sum(reward),3) as "Total reward"
from tb1
group by 1 having "Total reward" > 0
QueryRunArchived: QueryRun has been archived