SocioAnalyticadays and hours with timezone
    Updated 2023-11-16
    -- forked from days and hours @ https://flipsidecrypto.xyz/edit/queries/617815ba-ebfa-4055-b735-2d8322e4d7f3

    with txfee as (
    SELECT *
    FROM (
    SELECT
    'arbitrum' as blockchain,
    'ETH' as symbol,
    block_timestamp,
    tx_hash,
    tx_fee,
    gas_used
    FROM arbitrum.core.fact_transactions
    UNION
    SELECT
    'avalanche' as blockchain,
    'AVAX' as symbol,
    block_timestamp,
    tx_hash,
    tx_fee,
    gas_used
    FROM avalanche.core.fact_transactions
    UNION
    SELECT
    'base' as blockchain,
    'ETH' as symbol,
    block_timestamp,
    tx_hash,
    tx_fee,
    gas_used
    FROM base.core.fact_transactions
    UNION
    SELECT
    'bsc' as blockchain,
    'BNB' as symbol,
    block_timestamp,
    Run a query to Download Data