davidwallENS registrations
    Updated 2021-12-15
    SELECT
    date_trunc('week', block_timestamp) as ens_week,
    count(*) as ens_registration
    FROM
    ethereum.udm_events
    WHERE
    from_address is not NULL
    AND origin_function_signature LIKE '0xf7a16963'
    AND ens_week >'2021-10-04T00:00:00Z'
    GROUP by
    1
    Run a query to Download Data