0xHaM-d$HAIR Sell/Buy
    Updated 2025-01-08
    with
    token_info as (
    select
    token_address,
    symbol,
    name,
    decimals
    from aptos.core.dim_tokens
    )
    ,prices as (
    select
    hour::date as p_date,
    symbol,
    decimals,
    token_address,
    avg(price) as avg_price
    from aptos.price.ez_prices_hourly
    GROUP by 1, 2, 3, 4
    )
    , swaps as (
    SELECT
    BLOCK_TIMESTAMP,
    TX_HASH,
    EVENT_DATA,
    EVENT_TYPE,
    sender as swapper,
    CASE
    WHEN event_data:x_in :: int = 0 THEN TRIM(SPLIT_PART(SPLIT(event_type, ',')[1], ' ',2) :: string, '>')
    WHEN event_data:x_in :: int != 0 THEN TRIM(SPLIT_PART(SPLIT(event_type, ',')[0], '<', 2) :: string, ' ')
    END AS token_in,
    CASE
    WHEN event_data:y_in :: int = 0 THEN TRIM(SPLIT_PART(SPLIT(event_type, ',')[1], ' ',2) :: string, '>')
    WHEN event_data:y_in :: int != 0 THEN TRIM(SPLIT_PART(SPLIT(event_type, ',')[0], '<', 2) :: string, ' ')
    END AS token_out,
    CASE
    WHEN event_data : x_in :: int = 0 THEN event_data : y_in :: int
    Last run: 3 months ago
    DATE
    TRADE_TYPE
    N_TXS
    N_USER
    VOLUME
    1
    2025-01-08 00:00:00.000Buy371614300.405130242
    2
    2025-01-08 00:00:00.000Sell201614087.486151813
    3
    2025-01-07 00:00:00.000Buy1714937967.449028728
    4
    2025-01-07 00:00:00.000Sell2204831826.550698604
    5
    2025-01-06 00:00:00.000Sell4546443853.581564259
    6
    2025-01-06 00:00:00.000Buy2953947274.504567737
    7
    2025-01-05 00:00:00.000Buy207247249.160201218
    8
    2025-01-05 00:00:00.000Sell366199395.925882256
    9
    2025-01-04 00:00:00.000Sell4263817913.832199359
    10
    2025-01-04 00:00:00.000Buy2474313708.150497482
    11
    2025-01-03 00:00:00.000Buy2014228398.169253134
    12
    2025-01-03 00:00:00.000Sell1804618560.398863226
    13
    2025-01-02 00:00:00.000Buy22173415.267186268
    14
    2025-01-02 00:00:00.000Sell23203707.45457372
    15
    2025-01-01 00:00:00.000Buy52178807.174947962
    16
    2025-01-01 00:00:00.000Sell26217287.167466224
    17
    2024-12-31 00:00:00.000Buy1033516392.881955678
    18
    2024-12-31 00:00:00.000Sell482616029.576496187
    19
    2024-12-30 00:00:00.000Buy1173515427.326581334
    20
    2024-12-30 00:00:00.000Sell1134212997.162721091
    96
    5KB
    83s