adriaparcerisasFourthwall deployed contracts 3: Polygon
    Updated 19 minutes ago

    with
    addresses as (
    select distinct decoded_log:proxy as addresses
    from polygon.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 polygon.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: 19 minutes agoAuto-refreshes every 3 hours
    Date
    # of contracts
    Tokens created
    Total tokens created per contract
    1
    2024-10-29 00:00:00.000199
    2
    2024-10-30 00:00:00.000111
    3
    2024-11-01 00:00:00.000111
    4
    2024-11-04 00:00:00.000221
    5
    2024-11-05 00:00:00.000111
    6
    2024-11-06 00:00:00.000221
    7
    2024-11-07 00:00:00.000221
    8
    2024-11-08 00:00:00.000111
    9
    2024-11-09 00:00:00.000451.25
    10
    2024-11-10 00:00:00.000221
    11
    2024-11-11 00:00:00.0003103.333333
    12
    2024-11-12 00:00:00.000231.5
    13
    2024-11-13 00:00:00.0003134.333333
    14
    2024-11-14 00:00:00.00028140.5
    15
    2024-11-15 00:00:00.000328394.333333
    16
    2024-11-16 00:00:00.000413132.75
    17
    2024-11-17 00:00:00.000310635.333333
    18
    2024-11-18 00:00:00.00018585
    19
    2024-11-19 00:00:00.000294.5
    20
    2024-11-20 00:00:00.00038127
    ...
    155
    5KB
    397s