0-MIDper transmitter avg stats
    Updated 2023-04-07
    with tab1 as (
    select ORIGIN_FROM_ADDRESS--BLOCK_TIMESTAMP::date as date
    ,case
    when BLOCK_TIMESTAMP>='2023-03-01' and BLOCK_TIMESTAMP<='2023-03-10' then 'TEN DAYS BEFORE LAUNCHE'
    when BLOCK_TIMESTAMP>='2023-03-11' and BLOCK_TIMESTAMP<='2023-03-20' then 'TEN DAYS AFTER LAUNCHE' end as t_period
    ,sum(AMOUNT) as transfer_volume
    --,count(distinct ORIGIN_FROM_ADDRESS) as Transmitters
    ,count(distinct TX_HASH) as transfer_count
    from ethereum.core.ez_token_transfers
    where CONTRACT_ADDRESS='0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce'
    and BLOCK_TIMESTAMP>='2023-01-01'
    and t_period is not null
    group by 1,2)
    select t_period
    ,avg(transfer_volume) as avg_volume
    ,avg(transfer_count) as avg_count
    --,avg(Transmitters) as avg_Transmitter
    from tab1
    group by 1

    Run a query to Download Data