mattkstewAave Delegates 2
    Updated 2023-03-19
    SELECT
    date_trunc('day', block_timestamp) as Date,
    count(*) as Total_votes,
    count(distinct voter) as Unique_Voters
    from
    ethereum.aave.ez_votes
    where block_timestamp > current_date - {{Time_Period}}
    group by 1
    Run a query to Download Data