Squidsame chain swap: Swap Stats Over Time
    Updated 2025-02-28
    with from_avax as (
    --from native
    select
    block_number, block_timestamp, 'avalanche' as chain, tx_hash, origin_from_address as sender, 'AVAX' as from_token, amount as token_from_amount, amount_usd as token_from_amount_usd
    from avalanche.core.ez_native_transfers
    where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
    and ORIGIN_TO_ADDRESS = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    and origin_from_address = from_address

    union

    --from token
    select
    block_number, block_timestamp, 'avalanche' as chain, tx_hash, origin_from_address as sender, symbol as from_token, amount as token_from_amount, amount_usd as token_from_amount_usd
    from avalanche.core.ez_token_transfers
    where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
    and ORIGIN_TO_ADDRESS = '0xce16f69375520ab01377ce7b88f5ba8c48f8d666'
    and origin_from_address = from_address
    ),

    to_avax as (
    --to token
    select
    block_number, block_timestamp, 'avalanche' as chain, tx_hash, to_address as receiver, symbol as to_token, amount as token_to_amount, amount_usd as token_to_amount_usd
    from avalanche.core.ez_token_transfers
    where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
    and origin_from_address = to_address

    union

    --to native
    select
    block_number, block_timestamp, 'avalanche' as chain, tx_hash, to_address as receiver, 'AVAX' as to_token, amount as token_to_amount, amount_usd as token_to_amount_usd
    from avalanche.core.ez_native_transfers
    where block_timestamp::date between '{{Start_Date}}' and '{{End_Date}}'
    and origin_from_address = to_address
    Last run: 14 days ago
    Date
    Swap Volume
    Average
    Median
    Max
    Total Swap Volume
    Swap Count
    Total Swap Count
    Swapper Count
    1
    2023-06-01 00:00:00.0008066.165854832171.6205501030.877977.9758548328066.165854832252523
    2
    2023-07-01 00:00:00.000207.053.1853846150.56106.378273.215854832356026
    3
    2023-08-01 00:00:00.0005625.703741253175.8032419140.125469.9313898.919596085228214
    4
    2023-09-01 00:00:00.000143003.751813415378.3168037391.59259528674454.241135841156902.671409501356438249
    5
    2023-10-01 00:00:00.000138270.554974064235.5546081331.94592085941041.707219947295173.2263835645771015427
    6
    2023-11-01 00:00:00.000138703.06077204666.84163832740.20348263316483.05966508433876.2871556042121227141
    7
    2023-12-01 00:00:00.000478830.7878748641246.95517675716.45586946.46912707.0750304684011628233
    8
    2024-01-01 00:00:00.000567221.386719072640.20472541710.40218338870026.1030511479928.461749549342562635
    9
    2024-02-01 00:00:00.000657623.942105605630.51192915222.90149934738783.6544179522137552.4038551410423604559
    10
    2024-03-01 00:00:00.0001031211.25365656894.3722928511.91962890256132.383168763.657511711484752402
    11
    2024-04-01 00:00:00.0001556208.295537825.136954155232.45143755284897.1035540234724971.9530487118846636824
    12
    2024-05-01 00:00:00.0001112079.10230341125.8719979972.16142375685068.4221101675837051.055352118830154666038
    13
    2024-06-01 00:00:00.000885244.929959789165.40450858711.41553242.1656777016722295.98531195351208172636
    14
    2024-07-01 00:00:00.0001341990.99067992460.05861867710.787666.968064286.975991822890237071440
    15
    2024-08-01 00:00:00.0001187106.8962785669.3971060611.000449225114439.5731319251393.87227038170784078510661
    16
    2024-09-01 00:00:00.0001360352.45154465370.9714893773.7499907.33265910611746.3238153654444391969
    17
    2024-10-01 00:00:00.0001269960.75430962275.53932616816.72030080399964.6296632211881707.07812474595490342682
    18
    2024-11-01 00:00:00.0003756743.54128313246.1178944760.003603106073.46549099315638450.619407815256642903242
    19
    2024-12-01 00:00:00.0008346511.40103679571.4440230755.35848235380.30254923984962.020444614605788958970
    20
    2025-01-01 00:00:00.0006105975.974526911046.43975570321.23969834.3630090937.99497155831847263033
    21
    2KB
    528s