StangFAST004 - usd volume
    Updated 2023-09-20
    -- forked from 003 - transactions @ https://flipsidecrypto.xyz/edit/queries/29803c50-8557-49c8-8ea0-c59de69dd769

    -- forked from 002 - active day @ https://flipsidecrypto.xyz/edit/queries/5856ab07-c407-4fdd-81a2-1bf5f036aad0

    -- forked from 001 - age wallet @ https://flipsidecrypto.xyz/edit/queries/db9b6f04-5478-49d1-853c-7e4959d1c822

    -- forked from 08 - nft @ https://flipsidecrypto.xyz/edit/queries/b6100fd3-9132-4d9c-8980-844a8482e050

    -- forked from 01 - overview @ https://flipsidecrypto.xyz/edit/queries/fdaf4b6e-472e-420e-8924-f92da79f560d

    --- ez avax
    --- joepegs -- 0xae079eda901f7727d0715aff8f82ba8295719977
    --- origin_fucntion --> 0x97800e4d
    --- identifier --> CALL_ORIGIN

    --- nft
    --- tokenID
    --- platform_fee
    --- creator_fee
    --- tx_fee

    with

    avax_price AS
    (
    SELECT
    a.hour::date AS date
    , avg( a.price ) AS price
    , a.symbol AS token
    FROM
    avalanche.price.ez_hourly_token_prices a
    WHERE
    a.symbol = 'WAVAX'
    GROUP BY 1 , 3
    ORDER BY 1 DESC
    )
    Run a query to Download Data