BlockTrackeroverall metrics
    Updated 2 days ago
    select
    date_trunc('day', block_timestamp) as date,
    count(distinct origin_from_address) as swapper,
    count(distinct tx_hash) as txns,
    sum(txns) over (order by date) as cumu_xns,
    sum(coalesce(amount_in_usd,amount_out_usd)) as swap_volume,
    sum(swap_volume) over (order by date) as cumu_swap_volume,
    avg(coalesce(amount_in_usd,amount_out_usd)) as avg_per_txns,
    avg(swap_volume) over (order by date) as daily_avg_swap_volume,
    avg(swap_volume) over (order by date rows between 6 preceding and current row) as ma_7
    from avalanche.defi.ez_dex_swaps
    where (token_in = '{{Token_Address}}' or token_out = '{{Token_Address}}')
    and block_timestamp >= (select min(block_timestamp) from avalanche.defi.ez_dex_swaps
    where (token_in = '{{Token_Address}}' or token_out = '{{Token_Address}}'))
    group by date
    order by date desc





    Last run: 2 days ago
    DATE
    SWAPPER
    TXNS
    CUMU_XNS
    SWAP_VOLUME
    CUMU_SWAP_VOLUME
    AVG_PER_TXNS
    DAILY_AVG_SWAP_VOLUME
    MA_7
    1
    2025-04-24 00:00:00.00046122007104081479690.23693981955.97523.2285113156939819.55972469458.06285714
    2
    2025-04-23 00:00:00.000112558997082083631801.39692502265.74427.7236356146994972.381212122629095.23142857
    3
    2025-04-22 00:00:00.000111752737023092109974.4688870464.35293.5004033947029290.452551022626011.14
    4
    2025-04-21 00:00:00.000151062956970363636666.75686760489.95421.4470680267080005.051030932682681.54142857
    5
    2025-04-20 00:00:00.00019932156907412135447.83683123823.2461.718449737115873.158333342490507.93285714
    6
    2025-04-19 00:00:00.00020742376875262165079.96680988375.37393.3648183147168298.688105272548995.57857143
    7
    2025-04-18 00:00:00.00019829496832892127545.88678823295.41496.3942790487221524.419255322659798.53571428
    8
    2025-04-17 00:00:00.00073741316803402597150.41676695749.53426.671662567276298.382043013066096.95142857
    9
    2025-04-16 00:00:00.000144966376762093610212.75674098599.12392.8414309037327158.686086963125201.43142857
    10
    2025-04-15 00:00:00.00027638166695722506667.21670488386.37456.5878342447368004.245824183239869.33571428
    11
    2025-04-14 00:00:00.00022336346657562291451.49667981719.16457.0106681297422019.101777783486009.21
    12
    2025-04-13 00:00:00.00024632616621222544861.35665690267.67536.7773360057479665.928876413664345.02571428
    13
    2025-04-12 00:00:00.00049840736588612940700.66663145406.32474.3065580657535743.253636373775644.66571428
    14
    2025-04-11 00:00:00.00092060206547884971634.79660204705.66524.0470949727588559.835172423764667.14142857
    15
    2025-04-10 00:00:00.00031646676487683010881.77655233070.87416.5004523457618989.196162793552535.78142857
    16
    2025-04-09 00:00:00.00060354726441014412888.08652222189.1501.9208462247673202.224705893588159.77
    17
    2025-04-08 00:00:00.00044960686386294229646.33647809301.02464.9495800817712015.488333343562878.07571429
    18
    2025-04-07 00:00:00.00032257166325613539802.2643579654.69439.1814143927753971.743253023397861.59428571
    19
    2025-04-06 00:00:00.00030536616268453323958.83640039852.49601.2950126637805364.05475613421548.86285714
    20
    2025-04-05 00:00:00.00098382456231842863857.99636715893.66288.4336781157860690.045185193364863.96857143
    100
    11KB
    9s