Sandeshg3 nft holders
    Updated 2025-01-13

    -- CTE to generate a list of distinct dates from transaction data starting from March 26, 2023
    WITH dates AS (
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS date
    FROM ethereum.core.fact_transactions
    WHERE date >= '2023-03-26 00:00:00.000'
    AND date <= CURRENT_DATE -- Include up to the current date
    GROUP BY 1
    ),

    -- CTE to identify NFT buy and sell transactions
    buy_sell_table AS (
    (
    -- Extract "buy" transactions where NFTs are sent to an address
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS date,
    nft_to_address AS address,
    1 AS amount -- Represent each incoming NFT as +1
    FROM ethereum.nft.ez_nft_transfers
    WHERE block_number >= '19524812' -- From a specific block onwards
    AND nft_address = LOWER('0xDE76aD8998310dd4C6cA9fdb03a5F20bbf01Ce96') -- Target NFT contract address
    )
    UNION ALL
    (
    -- Extract "sell" transactions where NFTs are sent from an address
    SELECT
    DATE_TRUNC('day', BLOCK_TIMESTAMP) AS date,
    nft_from_address AS address,
    -1 AS amount -- Represent each outgoing NFT as -1
    FROM ethereum.nft.ez_nft_transfers
    WHERE block_number >= '19524812' -- From a specific block onwards
    AND nft_address = LOWER('0xDE76aD8998310dd4C6cA9fdb03a5F20bbf01Ce96') -- Target NFT contract address
    )
    ),

    Last run: 3 months ago
    DATE
    HOLDERS
    1
    2025-01-13 00:00:00.000313
    2
    2025-01-12 00:00:00.000313
    3
    2025-01-11 00:00:00.000313
    4
    2025-01-10 00:00:00.000313
    5
    2025-01-09 00:00:00.000313
    6
    2025-01-08 00:00:00.000312
    7
    2025-01-07 00:00:00.000311
    8
    2025-01-06 00:00:00.000311
    9
    2025-01-05 00:00:00.000311
    10
    2025-01-04 00:00:00.000311
    11
    2025-01-03 00:00:00.000310
    12
    2025-01-02 00:00:00.000310
    13
    2025-01-01 00:00:00.000309
    14
    2024-12-31 00:00:00.000309
    15
    2024-12-30 00:00:00.000309
    16
    2024-12-29 00:00:00.000309
    17
    2024-12-28 00:00:00.000309
    18
    2024-12-27 00:00:00.000309
    19
    2024-12-26 00:00:00.000309
    20
    2024-12-25 00:00:00.000309
    92
    3KB
    3s