StangFASTpart - 6 - Sellers
    Updated 2024-05-20
    --- 0x2a84808279ff8316fbd559b781a1397622257376 [ BabySkullz ]
    --- 0xb31f66aa3c1e785363f0875a1b74e27b85fd66c7 [ Wrapped AVAX ]
    --- total tx_hash -> 7362

    with

    token_price AS
    (
    SELECT
    date_trunc( 'day' , a.hour ) AS date
    , avg( a.price ) AS price
    , a.decimals AS decimal
    , a.token_address AS token_address
    , a.symbol AS symbol
    FROM
    avalanche.price.ez_hourly_token_prices a
    GROUP BY 1 , 3 , 4 , 5
    ORDER BY 1 DESC
    )
    ,
    raw_transaction_1 AS
    (
    SELECT
    a.tx_hash AS tx_hash
    FROM
    avalanche.core.fact_token_transfers a
    INNER JOIN
    avalanche.nft.ez_nft_transfers b
    ON a.block_timestamp = b.block_timestamp
    AND a.tx_hash = b.tx_hash
    WHERE
    b.nft_address = '0x2a84808279ff8316fbd559b781a1397622257376'
    AND b.event_type = 'other'
    GROUP BY 1
    )
    ,
    QueryRunArchived: QueryRun has been archived