pine_samiTotal staked in LIDO
    Updated 2022-09-13
    select
    sum(amount) as "Total Amount of Staked ETH in LIDO",
    count(distinct ORIGIN_FROM_ADDRESS) as "Total number of Stakers",
    count(distinct TX_HASH) as "Total number of stakes",
    ("Total Amount of Staked ETH in LIDO"/"Total number of stakes") as "Average Deposit Size",
    ("Total Amount of Staked ETH in LIDO"/"Total number of Stakers") as "Average ETH staked per Staker",
    ("Total number of stakes"/"Total number of Stakers") as "Average stakes per staker"
    from ethereum.core.ez_eth_transfers
    where eth_to_address = '0xae7ab96520de3a18e5e111b5eaab095312d7fe84'

    Run a query to Download Data