superflyUntitled Query
    Updated 2022-11-22
    select date_trunc('day', block_timestamp) as date,
    label as CEX,sum(amount) as Volume_SOL,
    count(distinct tx_id) as "COUNT_OF_Transactions"
    from solana.core.fact_transfers
    inner join solana.core.dim_labels on (tx_from = address)
    where label_type = 'cex'
    and mint = 'So11111111111111111111111111111111111111112'
    and block_timestamp >= '2022-10-01'
    group by
    1,
    2
    Run a query to Download Data