0xBlackfishUSDC Transfers
    Updated 2023-02-07
    with
    senders as (
    select
    distinct t.tx_from as pub_key
    from solana.core.fact_transfers t
    where
    t.mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    and t.amount >= 25000
    )

    , receivers as (
    select
    distinct t.tx_to as pub_key
    from solana.core.fact_transfers t
    where
    t.mint = 'EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v'
    and t.amount >= 25000
    )

    select
    distinct coalesce(s.pub_key,r.pub_key)
    from senders s
    full outer join receivers r on r.pub_key = s.pub_key
    Run a query to Download Data