angelnathTransaction Sequencing
    Updated 2025-03-12
    -- For a given wallet address (you can use a placeholder like 'YOUR_WALLET_ADDRESS'),
    -- write a query that shows all transactions in chronological order with:
    -- 1. A sequential number for each transaction
    -- 2. The time difference (in hours) between each transaction and the previous one
    -- 3. A running total of the transaction amounts

    SELECT
    block_timestamp as time,
    amount_usd,
    -- Sequential number for each transaction
    ROW_NUMBER() OVER (ORDER BY block_timestamp) AS transaction_sequence,
    -- Time difference between transactions
    DATEDIFF('hour',
    LAG(block_timestamp) OVER (ORDER BY block_timestamp),
    block_timestamp
    ) AS hours_since_previous,
    -- Running total of amounts
    SUM(amount_usd) OVER (ORDER BY block_timestamp ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW) AS running_total_usd
    FROM ethereum.core.ez_native_transfers

    WHERE origin_from_address = '0x5d15392bfd0248fdf5300044440700eb509fe894'

    ORDER BY block_timestamp DESC
    Last run: about 1 month ago
    TIME
    AMOUNT_USD
    TRANSACTION_SEQUENCE
    HOURS_SINCE_PREVIOUS
    RUNNING_TOTAL_USD
    1
    2025-03-02 08:58:59.0009.59380327.43
    2
    2025-03-02 08:58:59.0000.08390317.84
    3
    2025-03-02 08:58:59.0009.6737233308.09
    4
    2025-03-02 08:58:59.0009.67400317.76
    5
    2025-02-20 15:19:47.00021.083680298.42
    6
    2025-02-17 07:47:47.0001.19354277.34
    7
    2025-02-17 03:03:11.0000.56330276.15
    8
    2025-02-17 03:03:11.0000310275.03
    9
    2025-02-17 03:03:11.0000.56340275.59
    10
    2025-02-17 03:03:11.0000.563212275.03
    11
    2025-02-16 15:52:59.0002.6300274.45
    12
    2025-02-16 15:52:59.0002.63270271.85
    13
    2025-02-16 15:52:59.0002.6290269.22
    14
    2025-02-16 15:52:59.0000.02280274.47
    15
    2025-02-16 15:08:23.0000.01240264.5
    16
    2025-02-16 15:08:23.0001.06250265.56
    17
    2025-02-16 15:08:23.0001.06260266.62
    18
    2025-02-16 15:08:23.0001.05231264.49
    19
    2025-02-16 14:45:23.0002.49210258.46
    20
    2025-02-16 14:45:23.0000.02220258.48
    40
    2KB
    1s