Specterkatana before and after TREND
    Updated 2025-03-24
    WITH katanaSwap AS (
    SELECT block_timestamp, tx_hash,
    origin_from_address AS swapper,
    MAX(amount_usd) AS amount
    FROM ronin.core.ez_token_transfers
    WHERE origin_to_address IN (
    '0x7d0556d55ca1a92708681e2e231733ebd922597d',
    '0x5f0acdd3ec767514ff1bf7e79949640bf94576bd',
    '0x77f96cf7b98b963fb8a9b84787806d396d953b2b'
    )
    AND amount IS NOT NULL
    AND block_timestamp >= '2024-10-17'
    AND block_timestamp <= '2025-02-17'
    GROUP BY block_timestamp, tx_hash, origin_from_address
    )

    SELECT DATE_TRUNC('day',Block_timestamp) AS date,
    CASE
    WHEN block_timestamp < '2024-12-17' THEN 'Before Incentive'
    ELSE 'After Incentive'
    END AS period,
    COUNT(DISTINCT tx_hash) AS tx_count,
    COUNT(DISTINCT swapper) AS swappers,
    SUM(amount) AS amount_usd,
    FROM katanaSwap
    GROUP BY date, period;



    Last run: 24 days ago
    DATE
    PERIOD
    TX_COUNT
    SWAPPERS
    AMOUNT_USD
    1
    2025-01-08 00:00:00.000After Incentive1648259396485780.36
    2
    2024-10-22 00:00:00.000Before Incentive1278438946906226.85
    3
    2024-11-02 00:00:00.000Before Incentive548030161450568.79
    4
    2024-11-10 00:00:00.000Before Incentive1392749028894971.47
    5
    2025-01-28 00:00:00.000After Incentive3333994745702629.22
    6
    2024-12-29 00:00:00.000After Incentive1008445802720715.08
    7
    2024-12-09 00:00:00.000Before Incentive23773630627570947.77
    8
    2024-11-24 00:00:00.000Before Incentive23959662922233272.31
    9
    2025-01-11 00:00:00.000After Incentive1627883422988980.88
    10
    2025-01-20 00:00:00.000After Incentive1639153779539724.13
    11
    2024-12-30 00:00:00.000After Incentive1327349365111094.2
    12
    2024-10-17 00:00:00.000Before Incentive609232271727351.59
    13
    2024-11-21 00:00:00.000Before Incentive1602855858442558.71
    14
    2024-11-03 00:00:00.000Before Incentive682529592496794.62
    15
    2024-12-16 00:00:00.000Before Incentive17923673310514141.87
    16
    2025-01-16 00:00:00.000After Incentive1146357684667713.31
    17
    2024-12-20 00:00:00.000After Incentive27800677721231671.15
    18
    2025-01-13 00:00:00.000After Incentive1530263398182376.22
    19
    2025-01-21 00:00:00.000After Incentive585671199816205458.06
    20
    2024-12-02 00:00:00.000Before Incentive16676567714739619.15
    ...
    123
    8KB
    9s