cypherAvalanche transfer volume
    Updated 2022-09-25
    select
    date_trunc('hour', block_timestamp) as hour,
    sum(amount_usd) as total_transfer_volume_usd
    from avalanche.core.ez_avax_transfers
    where block_timestamp >= '2022-6-20'
    and identifier = 'CALL_ORIGIN'
    group by hour
    Run a query to Download Data