Sbhn_NPlinear-cyan
    Updated 2025-01-17
    with price as (
    SELECT hour::date as datee,
    symbol,
    token_address,
    decimals,
    avg(price) as usdprice
    from aptos.price.ez_prices_hourly
    group by 1,2,3,4
    UNION
    SELECT hour::date as datee,
    'USDt' as symbol,
    '0xccd1a84ccea93531d7f165b90134aa0415feb30e8757ab1632dac68c0055f5c2::coins::USDt' as token_address,
    6 as decimals,
    avg(price) as usdprice
    from aptos.price.ez_prices_hourly
    where symbol ='USDT'
    group by 1,2,3,4
    UNION
    SELECT hour::date as datee,
    'thAPT' as symbol,
    '0xfaf4e633ae9eb31366c9ca24214231760926576c7b625313b3688b5e900731f6::staking::ThalaAPT' as token_address,
    decimals,
    avg(price) as usdprice
    from aptos.price.ez_prices_hourly
    where symbol ='APT'
    group by 1,2,3,4
    UNION
    SELECT hour::date as datee,
    'TruAPT' as symbol,
    '0xccd1a84ccea93531d7f165b90134aa0415feb30e8757ab1632dac68c0055f5c2::coins::TruAPT' as token_address,
    decimals,
    avg(price) as usdprice
    from aptos.price.ez_prices_hourly
    where symbol ='APT'
    group by 1,2,3,4)

    Last run: 3 months ago
    DATE
    SYMBOL
    USD
    1
    2024-11-01 00:00:00.000USDC14522535.7248641
    2
    2024-12-01 00:00:00.000thAPT1928.774715105
    3
    2024-10-01 00:00:00.000WETH3860370.52579254
    4
    2024-12-01 00:00:00.000APT1384237.47778716
    5
    2024-11-01 00:00:00.000thAPT2070.349767232
    6
    2025-01-01 00:00:00.000USDt10709284.4938042
    7
    2024-12-01 00:00:00.000USDt24106342.2027762
    8
    2024-10-01 00:00:00.000WBTC779761.418197543
    9
    2024-10-01 00:00:00.000stAPT5221741.48656535
    10
    2024-04-01 00:00:00.000APT32170.917431136
    11
    2024-06-01 00:00:00.000USDC29653.890506664
    12
    2024-11-01 00:00:00.000stAPT7376163.0964811
    13
    2024-12-01 00:00:00.000TruAPT4467.527388915
    14
    2024-10-01 00:00:00.000USDC18685738.7936582
    15
    2024-11-01 00:00:00.000TruAPT197.992571616
    16
    2024-06-01 00:00:00.000THL1321.557846459
    17
    2024-05-01 00:00:00.000USDT9217.790538677
    18
    2024-06-01 00:00:00.000USDT15056.445474644
    19
    2024-08-01 00:00:00.000THL122.314903666
    20
    2024-10-01 00:00:00.000thAPT998.154203086
    79
    4KB
    19s