adriaparcerisasFourthwall deployed contracts 3: Ethereum
    Updated 2025-03-31
    with
    addresses as (
    select distinct decoded_log:proxy as addresses
    from ethereum.core.fact_decoded_event_logs x
    where x.contract_address=lower('0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0')
    AND event_name ilike '%proxydeployed%'
    )
    SELECT
    trunc(block_timestamp,'day') as "Date",
    count(distinct nft_address) as "# of contracts",
    count(distinct tokenid) as "Tokens created",
    "Tokens created"/"# of contracts" as "Total tokens created per contract"
    from ethereum.nft.ez_nft_transfers
    where nft_address in (select * from addresses)
    and nft_from_address='0x0000000000000000000000000000000000000000'
    and block_timestamp >=current_date-INTERVAL '{{number_of_months}} MONTHS'
    group by 1 order by 1 asc

    Last run: 29 days agoAuto-refreshes every 3 hours
    Date
    # of contracts
    Tokens created
    Total tokens created per contract
    1
    2024-10-06 00:00:00.000111
    2
    2024-10-22 00:00:00.000122
    3
    2024-10-23 00:00:00.000231.5
    4
    2024-10-24 00:00:00.000111
    5
    2024-10-25 00:00:00.000111
    6
    2024-10-30 00:00:00.00025125.5
    7
    2024-11-02 00:00:00.000122
    8
    2024-11-04 00:00:00.000221
    9
    2024-11-05 00:00:00.000144
    10
    2024-11-06 00:00:00.000111
    11
    2024-11-13 00:00:00.000111
    12
    2024-11-15 00:00:00.000111
    13
    2024-11-21 00:00:00.000111
    14
    2024-11-30 00:00:00.00011818
    15
    2024-12-01 00:00:00.000221
    16
    2024-12-02 00:00:00.000111
    17
    2024-12-04 00:00:00.00012121
    18
    2024-12-05 00:00:00.000111
    19
    2024-12-18 00:00:00.000111
    20
    2024-12-24 00:00:00.000111
    43
    1KB
    39s