jackguySei USDC 2
    Updated 2023-08-17
    SELECT
    date_trunc('day', block_timestamp) as day,
    count(DISTINCT sender) as senders,
    sum(amount / power(10, 6)) as transfer_volume,
    count(DISTINCT tx_id) as transfer_events

    FROM sei.core.fact_transfers
    WHERE currency LIKE 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349'
    AND transfer_type like 'SEI'
    GROUP by 1
    Run a query to Download Data