jackguylquid staking 1
Updated 2023-05-07
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
33
34
35
36
›
⌄
with stakewise as (
SELECT
date_trunc('week', block_timestamp) as week,
'Stakewise' as platform,
count(DISTINCT tx_hash) as events,
sum(amount) as volume
FROM ethereum.core.ez_token_transfers
WHERE contract_address LIKE lower('0xFe2e637202056d30016725477c5da089Ab0A043A')
AND from_address LIKE '0x0000000000000000000000000000000000000000'
GROUP BY 1,2
), stkr as (
SELECT
date_trunc('week', block_timestamp) as week,
'stkr' as platform,
count(DISTINCT tx_hash) as events,
sum(raw_amount / power(10, 18)) as volume
FROM ethereum.core.ez_token_transfers
WHERE contract_address LIKE lower('0xE95A203B1a91a908F9B9CE46459d101078c2c3cb')
AND from_address LIKE '0x0000000000000000000000000000000000000000'
GROUP BY 1,2
), rocket_pool as (
SELECT
date_trunc('week', block_timestamp) as week,
'Rocket pool' as platform,
count(DISTINCT tx_hash) as events,
sum(raw_amount / power(10, 18)) as volume
FROM ethereum.core.ez_token_transfers
WHERE contract_address LIKE lower('0xae78736Cd615f374D3085123A210448E74Fc6393')
AND from_address LIKE '0x0000000000000000000000000000000000000000'
GROUP BY 1,2
), lido as (
SELECT
date_trunc('week', block_timestamp) as week,
'Lido' as platform,
count(DISTINCT tx_hash) as events,
sum(raw_amount / power(10, 18)) as volume
Run a query to Download Data