boomer771.ens B
    Updated 2021-12-08
    select count(distinct event_inputs:name::string) as total_domain_registered, event_inputs:owner::string as address
    from ethereum.events_emitted
    where block_timestamp < '2021-11-01' and event_name = 'NameRegistered' and contract_address = '0x283af0b28c62c092c9727f1ee09c02ca627eb7f5'
    group by 2
    order by 1 desc
    limit 25