banterlyticsgenkai-holder
    Updated 16 hours ago
    with mint_tokenid as (
    select
    tokenid
    from ethereum.nft.ez_nft_mints
    where block_timestamp > '2023-07-25'
    and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
    ),

    transfers_date as (
    select
    distinct block_timestamp::date as day
    from ethereum.nft.ez_nft_transfers
    where block_timestamp > '2023-07-25'
    and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
    ),

    mint_x_transfers_date as (
    select* from mint_tokenid cross join transfers_date
    ),
    mint_tx as (
    select
    tx_hash from ethereum.nft.ez_nft_mints
    where block_timestamp > '2023-07-25'
    and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
    ),
    minters as (
    select
    tokenid,
    nft_to_address as minters_address
    from ethereum.nft.ez_nft_mints
    where block_timestamp > '2023-07-25'
    and nft_address = lower('0x1F7c16FCe4fC894143aFB5545Bf04f676bf7DCf3')
    ),

    Last run: about 16 hours agoAuto-refreshes every 24 hours
    DAY
    TOTAL_OWNERS
    1
    2025-02-16 00:00:00.0002165
    2
    2025-02-15 00:00:00.0002166
    3
    2025-02-14 00:00:00.0002167
    4
    2025-02-13 00:00:00.0002172
    5
    2025-02-12 00:00:00.0002172
    6
    2025-02-11 00:00:00.0002173
    7
    2025-02-10 00:00:00.0002176
    8
    2025-02-08 00:00:00.0002175
    9
    2025-02-07 00:00:00.0002178
    10
    2025-02-06 00:00:00.0002178
    11
    2025-02-05 00:00:00.0002178
    12
    2025-02-04 00:00:00.0002179
    13
    2025-02-03 00:00:00.0002180
    14
    2025-02-02 00:00:00.0002180
    15
    2025-02-01 00:00:00.0002180
    16
    2025-01-31 00:00:00.0002183
    17
    2025-01-30 00:00:00.0002185
    18
    2025-01-29 00:00:00.0002189
    19
    2025-01-28 00:00:00.0002188
    20
    2025-01-27 00:00:00.0002189
    ...
    548
    18KB
    8s