mahdishUntitled Query
    Updated 2022-09-13
    with aeth as (
    select
    concat('aETH') as derivative,
    count(distinct(user_address)) as total
    from ethereum.core.ez_current_balances
    where contract_address = '0xe95a203b1a91a908f9b9ce46459d101078c2c3cb'
    ),

    steth as (
    select
    concat('stETH') as derivative,
    count(distinct(user_address)) as total
    from ethereum.core.ez_current_balances
    where contract_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
    ),

    reth as (
    select
    concat('rETH') as derivative,
    count(distinct(user_address)) as total
    from ethereum.core.ez_current_balances
    where contract_address = '0xae78736cd615f374d3085123a210448e74fc6393'
    )

    select *
    from aeth
    union
    select *
    from steth
    union
    select *
    from reth
    Run a query to Download Data