Afonso_DiazOvertime
    Updated 2024-07-30
    with

    swaps as (
    select
    block_timestamp,
    tx_hash,
    origin_from_address as user,
    nvl(amount_in_usd, amount_out_usd) as amount_usd,
    tx_fee,
    iff(block_timestamp::date < '2024-03-14', 'Before fee changes', 'After fee changes') as timespan
    from arbitrum.defi.ez_dex_swaps
    join arbitrum.core.fact_transactions
    using (tx_hash, block_timestamp)
    where amount_usd <= 1e6
    and platform ilike 'uniswap%'
    ),

    overtime as (
    select
    date_trunc('week', block_timestamp)::date as date,
    timespan,
    count(distinct tx_hash) as swaps,
    count(distinct user) as swappers,
    sum(amount_usd) as volume_usd,
    avg(amount_usd) as average_amount_usd,
    sum(tx_fee) as fees_volume_eth,
    avg(amount_usd) as daily_average_fee_amount_eth
    from swaps
    group by 1, 2
    ),

    tvl as (
    select
    date_trunc('week', date) as date,
    avg(chain_tvl) as chain_tvl
    from external.defillama.fact_protocol_tvl
    QueryRunArchived: QueryRun has been archived