BlockTrackeroverall metrics
    Updated 5 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: 3 days ago
    DATE
    SWAPPER
    TXNS
    CUMU_XNS
    SWAP_VOLUME
    CUMU_SWAP_VOLUME
    AVG_PER_TXNS
    DAILY_AVG_SWAP_VOLUME
    MA_7
    1
    2025-05-28 00:00:00.00047410244106443810972959.14975187973.73970.7147151457277522.1920149320056825.2742857
    2
    2025-05-27 00:00:00.00084121287105419424517058.86964215014.590001989.7884077517249736.9518045120443249.0342857
    3
    2025-05-26 00:00:00.00057020096103290723740561.98939697955.731023.6530691627118923.9070454618160616.7257143
    4
    2025-05-25 00:00:00.00033717282101281118814344.55915957393.75955.5279101076992041.1736641316258557.8357143
    5
    2025-05-24 00:00:00.00010411912899552919898022.93897143049.200001910.7897162086901100.3784615415004547.0628571
    6
    2025-05-23 00:00:00.00015112151797640121729606.65877245026.270001872.8502369956800349.0408527213539208.5171429
    7
    2025-05-22 00:00:00.00017932240295488420725222.81855515419.620001778.7923797536683714.2157812512481121.8642857
    8
    2025-05-21 00:00:00.00011351475093248213677925.46834790196.810001782.2662545046573151.1559842611055568.9357143
    9
    2025-05-20 00:00:00.0001014102429177328538632.7821112271.350001671.5401258366516764.0583333410922528.3285714
    10
    2025-05-19 00:00:00.0003171303790749010426149.75812573638.650001694.7061400596500589.109210984970.7471429
    11
    2025-05-18 00:00:00.0007971381189445310036269.14802147488.900001618.0729855896468931.3620967810272249.8985714
    12
    2025-05-17 00:00:00.000398155238806429640653.11792111219.760001536.9341748826439928.615934969130454.34
    13
    2025-05-16 00:00:00.00013341887186511914323000.08782470566.650001610.4765186266413693.16926238234815.45857143
    14
    2025-05-15 00:00:00.00013991312684624810746352.31768147566.570001678.131653316348326.996446296498563.36
    15
    2025-05-14 00:00:00.00010651253583312212746641.21757401214.260001779.0869268386311676.78555397221.32857143
    16
    2025-05-13 00:00:00.0001528137758205878975729.63744654573.050001536.3127168986257601.454201693859320.65857143
    17
    2025-05-12 00:00:00.000156088258068125437103.81735678843.420001492.0901267086234566.469661022819196.79285714
    18
    2025-05-11 00:00:00.00022850337979872043700.23730241739.610001339.3723397546241382.389829062310536.02142857
    19
    2025-05-10 00:00:00.000104248777929543371180.94728198039.380001534.8533936226277569.305000012262721.92714286
    20
    2025-05-09 00:00:00.000142852567880772169235.39724826858.440001333.3695082226302842.247304352043867.83714286
    ...
    134
    15KB
    16s