freemartianUntitled Query
    Updated 2022-07-30
    select sum(abs(amount)) as collected_fee,
    count(distinct tx_id) as sale_count
    from polygon.udm_events
    where event_name = 'transfer'
    and event_type = 'erc20_transfer'
    and to_address in ('0x5b3256965e7c3cf26e11fcaf296dfc8807c01073', '0x8de9c5a032463c561423387a9648c5c7bcc5bc90')
    and symbol = 'WETH'

    Run a query to Download Data