amirrzHow Many ENS Names Have Been Renew So Far
    Updated 2022-11-04
    select
    distinct
    event_name,
    count(*) as txs
    from
    ethereum.core.fact_event_logs
    where
    contract_address='0x57f1887a8bf19b14fc0df6fd9b2acc9af147ea85'
    and
    tx_status='SUCCESS' and event_name in ('NameRenewed')
    GROUP BY 1 ORDER BY 2 DESC
    Run a query to Download Data