i_danWoofi: Weekly
    Updated 2025-02-11
    SELECT
    date_trunc('week', block_timestamp) AS "Week"
    , Count(*) AS "Transactions"
    , SUM("Transactions") OVER (ORDER BY "Week") AS "Cummulative Transactions"
    , Count(DISTINCT origin_from_address) AS "Swappers"
    , SUM(CASE WHEN amount_in_usd IS NULL THEN amount_out_usd ELSE amount_in_usd END) AS "Volume"
    , SUM("Volume") OVER (ORDER BY "Week") AS "Cummulative Volume"
    , COUNT(DISTINCT symbol) AS "Tokens"
    , COUNT(DISTINCT pool_name) AS "Pairs"
    FROM (
    SELECT
    block_timestamp
    , platform
    , symbol_in AS symbol
    , origin_from_address
    , pool_name
    , amount_in_usd
    , amount_out_usd
    FROM avalanche.defi.ez_dex_swaps
    WHERE platform = 'woofi'
    UNION ALL
    SELECT
    block_timestamp
    , platform
    , symbol_out AS symbol
    , origin_from_address
    , pool_name
    , amount_in_usd
    , amount_out_usd
    FROM avalanche.defi.ez_dex_swaps
    WHERE platform = 'woofi'
    )
    GROUP BY 1
    ORDER BY 1 DESC
    Last run: about 2 months ago
    Week
    Transactions
    Cummulative Transactions
    Swappers
    Volume
    Cummulative Volume
    Tokens
    Pairs
    1
    2025-02-10 00:00:00.0006574522273082517961324.2411911633115.96915
    2
    2025-02-03 00:00:00.0003580852161563428162370913.8811893671791.721528
    3
    2025-01-27 00:00:00.0003384651803483573143834639.411731300877.841627
    4
    2025-01-20 00:00:00.0004002051465023286178885574.8211587466238.441421
    5
    2025-01-13 00:00:00.0004058251064823321187769966.6411408580663.621323
    6
    2025-01-06 00:00:00.0003159650659002477118094198.1611220810696.981626
    7
    2024-12-30 00:00:00.0003229450343041897108560621.0411102716498.821121
    8
    2024-12-23 00:00:00.0002678450020101687117850590.8810994155877.781830
    9
    2024-12-16 00:00:00.0004735449752262043274071100.1810876305286.92341
    10
    2024-12-09 00:00:00.0002577249278721255247551820.6610602234186.721426
    11
    2024-12-02 00:00:00.0002932449021001629262446378.4410354682366.062133
    12
    2024-11-25 00:00:00.0002096048727761311172503294.3610092235987.622540
    13
    2024-11-18 00:00:00.0002591448518161429197289292.229919732693.262033
    14
    2024-11-11 00:00:00.0003216648259021435236744206.629722443401.041829
    15
    2024-11-04 00:00:00.0002057247937361437144304927.229485699194.421936
    16
    2024-10-28 00:00:00.000126344773164117555086429.589341394267.21427
    17
    2024-10-21 00:00:00.000111304760530112544634325.989286307837.621929
    18
    2024-10-14 00:00:00.000122884749400121945884502.689241673511.641630
    19
    2024-10-07 00:00:00.000137364737112134252822480.089195789008.962236
    20
    2024-09-30 00:00:00.000137164723376135059039477.529142966528.881524
    ...
    158
    12KB
    3s