adriaparcerisasETH Liquid Staking 4
Updated 2023-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
33
34
35
36
›
⌄
-- How much ETH was staked over time?
-- How many unique depositors are there?
-- How likely are depositors to use multiple platforms vs using a single platform?
-- Are depositors Dollar cost averaging their ETH into the platforms?
-- What is the avg/median/max/min/distribution of ETH deposits?
-- Compare all the metrics above between the various ETH staking methods/platforms
with
tab1 as (
SELECT
'Stakewise' as platform,
amount as eth_amount
FROM ethereum.core.ez_token_transfers
WHERE contract_address = lower('0xFe2e637202056d30016725477c5da089Ab0A043A') AND from_address = '0x0000000000000000000000000000000000000000'
), tab2 as (
SELECT
'Ankr' as platform,
raw_amount/power(10, 18) as eth_amount
FROM ethereum.core.ez_token_transfers
WHERE contract_address = lower('0xE95A203B1a91a908F9B9CE46459d101078c2c3cb') AND from_address = '0x0000000000000000000000000000000000000000'
), tab3 as (
SELECT
'Rocketpool' as platform,
raw_amount/power(10, 18) as eth_amount
FROM ethereum.core.ez_token_transfers
WHERE contract_address = lower('0xae78736Cd615f374D3085123A210448E74Fc6393') AND from_address = '0x0000000000000000000000000000000000000000'
), tab4 as (
SELECT
'Lido' as platform,
raw_amount/power(10, 18) as eth_amount
FROM ethereum.core.ez_token_transfers
WHERE contract_address = lower('0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84') AND from_address = '0x0000000000000000000000000000000000000000'
),
tab5 as (
SELECT
'Cream Finance' as platform,
Run a query to Download Data