Yousefi_1994How likely are depositors to use multiple platforms vs using a single platform?
Updated 2022-09-06
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 liquid_staking_by_lido as (
select
'Lido Liquid Staking' as platform_type,
origin_from_address
from ethereum.core.ez_eth_transfers
where eth_to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
),
liquid_staking_by_stakewise as (
select
'Stakewise Liquid Staking' as platform_type,
origin_from_address
from ethereum.core.ez_eth_transfers
where eth_to_address = '0xc874b064f465bdd6411d45734b56fac750cda29a'
),
liquid_staking_by_rocket_pool as (
select
'Rocket Pool Liquid Staking' as platform_type,
origin_from_address
from ethereum.core.ez_eth_transfers
where (eth_to_address = '0x4d05e3d48a938db4b7a9a59a802d5b45011bde58' and eth_to_address = origin_to_address)
),
liquid_staking_by_cream as (
select
'Cream Liquid Staking' as platform_type,
origin_from_address
from ethereum.core.ez_eth_transfers
where eth_to_address = '0xcbc1065255cbc3ab41a6868c22d1f1c573ab89fd'
),
liquid_staking_by_direct_staking as (
select
'Direct Staking' as platform_type,
origin_from_address
from ethereum.core.ez_eth_transfers
where eth_to_address = '0x00000000219ab540356cbb839cbe05303d7705fa'
and identifier = 'CALL_ORIGIN'
),
Run a query to Download Data