shadilTotal number of stakers
    Updated 2022-09-22
    SELECT count(distinct origin_from_address) as total, date_trunc('day', block_timestamp) as date_time
    from ethereum.core.ez_token_transfers
    where origin_function_signature in ('0x6ab15071')
    and date_time >= '2022-07-01'
    and to_address like '0x5e3ef299fddf15eaa0432e6e66473ace8c13d908'
    group by date_time

    Run a query to Download Data