StangFASTsale - part 6 [ max , min , avg ]
    Updated 2024-01-26

    with

    minted_tokens AS
    (
    SELECT
    a.tx_hash AS transaction
    , count( distinct a.tokenid ) AS token
    FROM
    avalanche.nft.ez_nft_transfers a
    WHERE
    a.nft_address = '0xcdab7d987f0198edb440d014ed1e71256a0e3e7a'
    AND a.event_type = 'mint'
    GROUP BY 1
    ORDER BY 2 DESC
    )
    ,
    minted_chart_1 AS
    (
    SELECT
    a.block_timestamp AS date
    , a.nft_to_address AS minter
    , a.tx_hash AS transaction
    , a.project_name AS project_name
    , a.tokenid AS token_id
    , b.amount_precise / c.token AS amount
    , b.amount_usd / c.token AS usd_volume
    FROM
    avalanche.nft.ez_nft_transfers a

    LEFT OUTER JOIN
    avalanche.core.ez_avax_transfers b
    ON a.block_timestamp = b.block_timestamp
    AND a.tx_hash = b.tx_hash
    AND a.nft_to_address = b.origin_from_address

    Last run: about 1 year ago
    date
    max price sold
    avg price sold
    min price sold
    1
    2024-01-25 00:00:00.0001186.06504065407.478827199340.993699187
    2
    2024-01-24 00:00:00.0001494.221435.617177381323.442640078
    3
    2024-01-23 00:00:00.0001192.526829268381.517439054264.059512195
    4
    2024-01-22 00:00:00.0001555.4375365.60835438261.9205
    5
    2024-01-21 00:00:00.0001319.716666667464.859143423403.008876793
    6
    2024-01-20 00:00:00.0002203.059366505479.740776309422.871882147
    7
    2024-01-19 00:00:00.0002220.987316387536.907087052428.908057839
    8
    2024-01-18 00:00:00.0001362.943731707561.336117164480.898626016
    9
    2024-01-17 00:00:00.0001975.53125655.798441541581.165375
    10
    2024-01-16 00:00:00.0003495.772357724691.555123707577.152593412
    11
    2024-01-15 00:00:00.0001717.476292683766.17488461944.799146341
    12
    2024-01-14 00:00:00.0003548.356134146639.39844032497.527292683
    13
    2024-01-13 00:00:00.0001926.833333333424.70292657248.626266667
    14
    2024-01-12 00:00:00.00010438.083333333532.483583859362.902764228
    15
    2024-01-11 00:00:00.0008395.593495935499.708372131343.456097561
    16
    2024-01-10 00:00:00.0004788.442588862419.971657892140.917024758
    16
    1KB
    50s