lagandispenserThe daily usages (May 13)
    Updated 2022-05-17
    SELECT
    DISTINCT tx_to_label,
    tx_to_label_type,
    count(tx_id) as tx_to_label_cnt,
    sum(event_inputs:value/1e18) as amount_aggregate
    from ethereum.events_emitted
    where contract_address =lower('0x6b175474e89094c44da98b954eedeac495271d0f')
    and TX_SUCCEEDED = true
    and event_name = 'Transfer'
    GROUP by 1,2
    order by 3 desc,4 DESC
    limit 20
    Run a query to Download Data