farid-c9j0VMnumber of sol transfered per day on solana
    Updated 2022-07-01
    SELECT BLOCK_TIMESTAMP::date as date,
    COUNT(DISTINCT tx_id) as num_tranfers,
    COUNT(DISTINCT TX_FROM) as unique_wallets
    from solana.core.fact_transfers
    where BLOCK_TIMESTAMP::date >= '2022-01-01'
    and mint = 'So11111111111111111111111111111111111111112'
    GROUP by 1
    order by 1
    Run a query to Download Data