aminlorestani1991Top 10 Aave Stakers in 2023
    Updated 2023-06-05
    select
    ORIGIN_FROM_ADDRESS as stakers,
    sum(DECODED_LOG:amount / pow(10, 18)) as staked
    from
    ethereum.core.ez_decoded_event_logs
    where
    contract_address = lower('0x4da27a545c0c5b758a6ba100e3a049001de870f5')
    and block_timestamp >= '2023-01-01'
    and EVENT_NAME = 'Staked'
    and TX_STATUS = 'SUCCESS'
    group by
    1
    order by
    2 DESC
    limit
    5
    Run a query to Download Data