sarathUser participation 2
    Updated 2022-03-17
    -- SELECT
    -- contract_address,count(tx_from_address) as users
    -- FROM
    -- ethereum.events_emitted
    -- where
    -- contract_address = '0x5e4be8bc9637f0eaa1a755019e06a68ce081d58f'
    -- and event_name ='VoteCast'
    -- GROUP by 1
    select contract_address,count(origin_address) as total users from ethereum.udm_events where contract_address='0x5e4be8bc9637f0eaa1a755019e06a68ce081d58f'
    GROUP by 1
    LIMIT 100

    Run a query to Download Data