Afonso_DiazOvertime
    Updated 2025-06-01
    with

    main as (
    select
    tx_hash,
    block_timestamp,
    origin_from_address as user,
    symbol_in,
    symbol_out,
    token_in,
    token_out,
    greatest(symbol_in, symbol_out) || ' - ' || least(symbol_in, symbol_out) as token_pair,
    nvl(amount_in_usd, amount_out_usd) as amount_usd
    from
    bsc.defi.ez_dex_swaps
    where
    amount_usd < 1e7
    and platform ilike 'dodo%'
    ),

    overtime as (
    select
    date_trunc('{{ period }}', block_timestamp) as date,
    count(distinct tx_hash) as txns,
    count(distinct user) as users,
    sum(amount_usd) as volume_usd,
    avg(amount_usd) as average_amount_usd,
    median(amount_usd) as median_amount_usd
    from main
    where block_timestamp::date between '{{ start_date }}' and '{{ end_date }}'
    group by 1
    ),

    new_users as (
    select
    date_trunc('{{ period }}', min_date) as date,
    Last run: 17 days ago
    DATE
    TXNS
    USERS
    VOLUME_USD
    AVERAGE_AMOUNT_USD
    MEDIAN_AMOUNT_USD
    NEW_USERS
    RETURNING_USERS
    CUMULATIVE_TXNS
    CUMULATIVE_VOLUME_USD
    1
    2024-01-01 00:00:00.00011720451817856182.191492.492660481163.775323112871260819742133.94
    2
    2024-02-01 00:00:00.0003824513757305583318.47607.062766672864.081052932282060464128519206.9
    3
    2024-03-01 00:00:00.00011074231459699962357.576061.014820584401.0052535261075400698692422619.95
    4
    2024-04-01 00:00:00.0005186418853509135850.499437.704608041959.071378850653041326029757367.56
    5
    2024-05-01 00:00:00.0003444511507363748662.0110219.955664475796.585750839991311612558112438.98
    6
    2024-06-01 00:00:00.0002911310936575667530.719219.669160657510.19578013135967162194363776.97
    7
    2024-07-01 00:00:00.000273027496508180275.1317940.417818612902.0854909258739910527922409.07
    8
    2024-08-01 00:00:00.00036640105641264823449.5233835.998221556640.61777627881678013822935888.5
    9
    2024-09-01 00:00:00.0002769393211090773837.238776.176224671962.77568172504676031618696246.27
    10
    2024-10-01 00:00:00.00046222126131392102310.1729366.7688416591003.195944631672522685520621517.07
    11
    2024-11-01 00:00:00.00065214176551505229112.2722514.832282851597.151283648194293277992460262.38
    12
    2024-12-01 00:00:00.0005998116950457473782.557296.69807563543.8951260243483641136487231150.11
    13
    2025-01-01 00:00:00.0008884861885951.752052.17818280713.2411644-111588881885951.75
    13
    1KB
    53s