pecio222odos share
    Updated 2025-01-28
    /*select
    DECODED_LOG ['referralCode'],
    count(tx_hash) as amount
    from
    avalanche.core.ez_decoded_event_logs
    where
    contract_address = '0x88de50b233052e4fb783d4f6db78cc34fea3e9fc'
    group by
    1
    */
    with lfj_frontend_odos as (
    select
    tx_hash
    from
    avalanche.core.ez_decoded_event_logs
    where
    contract_address = '0x88de50b233052e4fb783d4f6db78cc34fea3e9fc'
    and DECODED_LOG ['referralCode'] = 1061215132
    ),
    all_swaps as (
    select
    date_trunc('day', block_timestamp) as Day,
    case
    when tx_hash in (
    select
    tx_hash
    from
    lfj_frontend_odos
    ) then 'lfj_all_pools'
    else 'others_all_pools'
    end as odos_source,
    sum(coalesce(amount_out_usd, amount_in_usd, 0)) as volume,
    count(DISTINCT tx_hash) as amount
    from
    avalanche.defi.ez_dex_swaps
    Last run: 3 months ago
    DAY
    ODOS_SOURCE
    VOLUME
    AMOUNT
    1
    2025-01-28 00:00:00.000lfj_all_pools43697901634
    2
    2025-01-28 00:00:00.000others_all_pools13538665.814468
    3
    2025-01-28 00:00:00.000lfj_lfj_pools2070939.481144
    4
    2025-01-28 00:00:00.000others_lfj_pools4858922.172419
    5
    2025-01-27 00:00:00.000lfj_all_pools6422835.722878
    6
    2025-01-27 00:00:00.000lfj_lfj_pools2594703.832409
    7
    2025-01-27 00:00:00.000others_lfj_pools9676984.854325
    8
    2025-01-27 00:00:00.000others_all_pools21939441.167343
    9
    2025-01-26 00:00:00.000others_all_pools16088368.535875
    10
    2025-01-26 00:00:00.000lfj_lfj_pools3412126.662258
    11
    2025-01-26 00:00:00.000others_lfj_pools6859000.953934
    12
    2025-01-26 00:00:00.000lfj_all_pools5981430.732624
    13
    2025-01-25 00:00:00.000others_all_pools14679892.325424
    14
    2025-01-25 00:00:00.000lfj_all_pools5033997.752436
    15
    2025-01-25 00:00:00.000lfj_lfj_pools2389767.752159
    16
    2025-01-25 00:00:00.000others_lfj_pools6294864.283548
    17
    2025-01-24 00:00:00.000lfj_all_pools6204970.13273
    18
    2025-01-24 00:00:00.000others_all_pools14424413.625973
    19
    2025-01-24 00:00:00.000others_lfj_pools5640341.314120
    20
    2025-01-24 00:00:00.000lfj_lfj_pools2448907.72876
    76
    5KB
    10s