BlockTrackerdaily swap volume
    Updated 3 days ago
    select
    date_trunc('day', block_timestamp) as date,
    sum(coalesce(from_amount_usd, to_amount_usd)) as swap_volume ,
    count(distinct tx_id) as n_swaps,
    count(distinct from_address) as n_swappers,
    sum(LIQ_FEE_CACAO_USD) as swap_fee ,
    avg(case when block_timestamp >= '2023-05-07' then SWAP_SLIP_BP else 0 end) as AVG_SWAP_SLIP_BP
    from maya.defi.fact_swaps
    where tx_id not in (select tx_id from maya.defi.fact_refund_events)
    group by 1
    order by 2 desc
    Last run: 3 days ago
    DATE
    SWAP_VOLUME
    N_SWAPS
    N_SWAPPERS
    SWAP_FEE
    AVG_SWAP_SLIP_BP
    1
    2025-03-02 00:00:00.00036887681.9578756843219426780.678395518.397497
    2
    2025-02-27 00:00:00.00023382422.4044496808423110846.9302034088.220686
    3
    2024-11-11 00:00:00.00021248131.403014640222528697.7266211288.041292
    4
    2024-11-12 00:00:00.00018759656.444083638611837025.7154178397.946993
    5
    2025-03-01 00:00:00.00017971679.8403406561615611580.3501847298.442944
    6
    2024-10-31 00:00:00.00017724323.321591928331675586.3655007057.896393
    7
    2024-12-03 00:00:00.00017201048.145127242371966527.5251998918.070265
    8
    2024-10-11 00:00:00.00016315665.610011303121511447.1257063068.004289
    9
    2024-10-09 00:00:00.00016301275.2865184517121113011.0523954258.259666
    10
    2025-01-24 00:00:00.00015897369.8251179622956012299.4086274398.810019
    11
    2025-02-01 00:00:00.00015700694.9481697544846827809.7578350478.450036
    12
    2025-02-26 00:00:00.00015508709.081913551571737316.7360787288.32667
    13
    2025-02-24 00:00:00.00014999479.261214463011117861.9987695438.386576
    14
    2025-01-25 00:00:00.00014794920.627289940172057176.7002161158.198355
    15
    2024-10-10 00:00:00.00014161630.665121133282075630.3089662098.002084
    16
    2023-11-12 00:00:00.00013230031.7556706319687054273.45325263411.583497
    17
    2024-10-22 00:00:00.00013069401.211598427041604459.5555176577.790537
    18
    2025-03-03 00:00:00.00012353547.682157636771647369.0135719968.425894
    19
    2024-11-07 00:00:00.00011547885.935794332641783650.2584542967.924794
    20
    2024-08-27 00:00:00.00011526079.714023916111144377.7129678678.930014
    ...
    695
    51KB
    1s