jackguyNFT-token-dash-7 copy copy copy
    Updated 2024-01-30
    -- forked from NFT-token-dash-7 copy copy @ https://flipsidecrypto.xyz/edit/queries/4f3b0477-cf6d-4d31-88b7-80e2480fb4b5

    -- forked from NFT-token-dash-7 copy @ https://flipsidecrypto.xyz/edit/queries/920256b9-5fd2-47ec-bec6-faa83a54ba43

    -- forked from NFT-token-dash-7 @ https://flipsidecrypto.xyz/edit/queries/47272795-20b4-4026-9d6c-26c083cae91e

    with tab1 as (
    SELECT
    case when TOKEN1_SYMBOL LIKE 'WETH' then TOKEN0_ADDRESS else TOKEN1_ADDRESS end as token
    FROM ethereum.uniswapv3.ez_swaps
    where pool_address IN (
    lower('0x5ee84bed805df225ee23aec4160cc0bfcf1bd892'),
    lower('0xe72377ae353edc1d07f6c0be34969a481d030d19'),
    lower('0x882784c5807d5e2e4950ae2327ca5d9b56a1015a'),
    lower('0x92741be6adcb2722681925afce9af0a7306ce90f'),
    lower('0x4a382e0fb2abc4bc087d2f7953a4689ecbb96374'),
    lower('0xb17015d33c97a2caca73be2a8669076a333fd43d'),
    lower('0x01a8227d4e7c3068ad1000c97a059af5c5fa3476')
    )
    AND ( token0_symbol LIKE 'μBAYC'
    OR token1_symbol LIKE 'μBAYC' )
    )

    SELECT
    hour,
    count(*) as new_holders

    FROM (
    SELECT
    to_address,
    min(date_trunc('hour', block_timestamp)) as hour
    from ethereum.core.ez_token_transfers
    WHERE contract_address in (SELECT * FROM tab1)
    GROUP BY 1
    )
    Last run: about 1 year agoAuto-refreshes every 6 hours
    HOUR
    NEW_HOLDERS
    1
    2024-01-23 04:00:00.0003
    2
    2024-01-22 16:00:00.0001
    3
    2024-01-29 05:00:00.0003
    4
    2024-01-20 22:00:00.0001
    5
    2024-01-25 20:00:00.0001
    6
    2024-01-22 20:00:00.0001
    7
    2024-01-22 06:00:00.0001
    8
    2024-01-21 06:00:00.0001
    9
    2024-01-24 04:00:00.0001
    10
    2024-01-28 23:00:00.0004
    11
    2024-01-23 11:00:00.0002
    12
    2024-01-28 22:00:00.0002
    13
    2024-01-29 04:00:00.0004
    14
    2024-01-24 22:00:00.0001
    15
    2024-01-29 01:00:00.0003
    16
    2024-01-28 11:00:00.0002
    17
    2024-01-24 21:00:00.0001
    18
    2024-01-22 23:00:00.0001
    19
    2024-01-22 07:00:00.0001
    20
    2024-01-23 17:00:00.0001
    35
    1KB
    11s