rajsUntitled Query
    Updated 2022-10-19
    SELECT
    origin_function_signature,
    count(distinct tx_hash) as no_of_txs
    from polygon.core.fact_transactions
    where to_address = '0xc0b06137bfdd5bf5c099eb6e6ebeb9342dad1dd8'
    and block_timestamp >= '2022-10-10 08:00:00.000'
    group by 1
    order by 2 desc
    -- limit 3
    Run a query to Download Data