rajsUntitled Query
    Updated 2022-10-08
    SELECT
    -- *
    from_address,
    count(distinct tx_hash)
    -- count(distinct from_address)
    from polygon.core.fact_transactions
    -- where tx_hash = '0x93e0f0a140b114eb48ae02eccfda1d20d7dc81f87e60f5eb7df813d4bdea9221'
    where to_address = '0xc0b06137bfdd5bf5c099eb6e6ebeb9342dad1dd8'
    and status = 'SUCCESS'
    group by 1
    order by 2 desc
    -- limit 3
    Run a query to Download Data