0-MIDmint volume by new minters
    with act1 as (
    with tab1 as (
    select date_trunc('minute',BLOCK_TIMESTAMP) as time
    ,TO_ADDRESS
    ,AMOUNT
    from avalanche.core.ez_token_transfers
    where CONTRACT_ADDRESS in( lower('0xB97EF9Ef8734C71904D8002F8b6Bc66Dd9c48a6E'))
    and FROM_ADDRESS='0x0000000000000000000000000000000000000000')
    select date_trunc('month',time) as month
    ,TO_ADDRESS
    ,AMOUNT
    ,row_number()over(partition by TO_ADDRESS order by month) as time_row
    from tab1),
    --------------------------------------
    act2 as (
    with tab1 as (
    select date_trunc('minute',BLOCK_TIMESTAMP) as time
    ,TO_ADDRESS
    ,AMOUNT
    from arbitrum.core.ez_token_transfers
    where CONTRACT_ADDRESS in (lower('0xaf88d065e77c8cC2239327C5EDb3A432268e5831'),lower('0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8'))
    and FROM_ADDRESS='0x0000000000000000000000000000000000000000')
    select date_trunc('month',time) as month
    ,TO_ADDRESS
    ,AMOUNT
    ,row_number()over(partition by TO_ADDRESS order by month) as time_row
    from tab1),
    -----------------------------
    act3 as (
    with tab1 as (
    select date_trunc('minute',BLOCK_TIMESTAMP) as time
    ,TO_ADDRESS
    ,AMOUNT
    from optimism.core.ez_token_transfers
    where CONTRACT_ADDRESS in( lower('0x7f5c764cbc14f9669b88837ca1490cca17c31607'))
    and FROM_ADDRESS='0x0000000000000000000000000000000000000000')