jackguyLiquid Staking ETH Platforms Analysis 2
Updated 2023-06-24Copy Reference Fork
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
'Stakewise' as platform,
count(DISTINCT ORIGIN_FROM_ADDRESS) 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
), stkr as (
SELECT
'stkr' as platform,
count(DISTINCT ORIGIN_FROM_ADDRESS) 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
), rocket_pool as (
SELECT
'Rocket pool' as platform,
count(DISTINCT ORIGIN_FROM_ADDRESS) 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
), lido as (
SELECT
'Lido' as platform,
count(DISTINCT ORIGIN_FROM_ADDRESS) as events,
sum(raw_amount / power(10, 18)) as volume
FROM ethereum.core.ez_token_transfers
WHERE contract_address LIKE lower('0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84')
AND from_address LIKE '0x0000000000000000000000000000000000000000'
GROUP BY 1
Run a query to Download Data