alitaslimiProposal Overview
    Updated 2023-03-10
    SELECT
    status AS "Status",
    COUNT(DISTINCT proposal_id) AS "Proposals",
    ROUND(AVG(end_voting_period - start_voting_period)) AS "Voting Period"
    FROM
    ethereum.aave.ez_proposals
    GROUP BY
    "Status"
    ORDER BY
    "Status" DESC
    Run a query to Download Data