freemartianStaker Count
    Updated 2022-06-14
    select count(distinct event_inputs:to) as "Staker Count",
    date_trunc('day', block_timestamp::date) as TIME
    from ethereum.events_emitted
    where contract_address = lower('0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84')
    and event_name = 'Transfer'
    and block_timestamp > CURRENT_DATE - 90
    group by TIME
    Run a query to Download Data