Yousefi_1994Top 5 unique depositors that Deposit to StarkNet
    Updated 2022-06-30
    select
    from_address,
    count(tx_hash) as number_of_tx,
    sum(eth_value) as eth_amount
    from ethereum.core.fact_transactions
    where to_address = '0xae0ee0a63a2ce6baeeffe56e7714fb4efe48d419'
    and origin_function_signature = '0xb6b55f25'
    group by from_address
    order by eth_amount desc
    limit 5
    Run a query to Download Data