Ali3NDately Tipping Activity Over Time (Arena App Avalanche)
    Updated 13 hours ago
    with arenauserst as (
    select from_address as ArenaUser
    from avalanche.core.fact_transactions
    where to_address = '0xc605c2cf66ee98ea925b1bb4fea584b71c00cc4c'
    and from_address != '0xc605c2cf66ee98ea925b1bb4fea584b71c00cc4c'),

    pricet as (
    select hour::date as day,
    token_address,
    symbol,
    decimals,
    avg (price) as usdprice
    from avalanche.price.ez_prices_hourly
    where hour >= '2025-01-23 00:00:00.000'
    group by 1,2,3,4),

    arenatipsendt as (
    select block_timestamp,
    tx_hash,
    origin_from_address as tipper,
    'AVAX' as symbol,
    decoded_log:total*usdprice/1e18 as amount
    from avalanche.core.ez_decoded_event_logs t1 join pricet t2 on t1.block_timestamp::Date = t2.day and t2.symbol = 'WAVAX'
    where origin_tO_address = '0xf60fadfb18820c58af892692838b354fc808fd61'
    and contract_address = '0xf60fadfb18820c58af892692838b354fc808fd61'
    and origin_function_signature = '0xbb4c9f0b'
    and tx_succeeded

    union all

    select block_timestamp,
    tx_hash,
    origin_from_address as tipper,
    symbol,
    decoded_log:total*usdprice/pow(10,decimals) as amount
    from avalanche.core.ez_decoded_event_logs t1 join pricet t2 on t1.block_timestamp::Date = t2.day and t1.decoded_log:token = t2.token_address
    Last run: about 13 hours agoAuto-refreshes every 24 hours
    DATE
    SYMBOL
    ACTIONS
    TIP_GIVER
    TIP_AMOUNT
    AVERAGE_TIP_AMOUNT
    MIN_TIP_AMOUNT
    MAX_TIP_AMOUNT
    CUMULATIVE_ACTIONS
    CUMULATIVE_TIP_AMOUNT
    1
    2025-04-28 00:00:00.000AVAX4031403.3510.083750.01213.61099506969784.59
    2
    2025-04-28 00:00:00.000ARENA213366634.96696288930.0224749450.014206321712625.54436544711047779.0430907
    3
    2025-04-28 00:00:00.000BLUB112.5038251762.5038251762.5038251762.50382517636544711047779.0430907
    4
    2025-04-28 00:00:00.000COQ971.0705593270.066909957930.000073274316780.935802210136544711047779.0430907
    5
    2025-04-28 00:00:00.000MU220.27124638870.13562319440.13032033070.14092605836544711047779.0430907
    6
    2025-04-28 00:00:00.000WINK330.024681372130.0082271240430.0054645104350.0101093443138574614825.766613898
    7
    2025-04-28 00:00:00.000COQ48310923.4717828320.048595823676.71493087e-102.685972348138574614825.766613898
    8
    2025-04-28 00:00:00.000TECH14100.0080625849130.00057589892244.977826087e-70.005077382609138574614825.766613898
    9
    2025-04-28 00:00:00.000BOI444.3974744421.0993686110.18094057713.5454236544711047779.0430907
    10
    2025-04-28 00:00:00.000KET212.1495576521.0747788260.71651921741.433038435138574614825.766613898
    11
    2025-04-28 00:00:00.000NOCHILL420.29964815610.074912039030.049247336710.083466939836544711047779.0430907
    12
    2025-04-28 00:00:00.000AVAX10766739.1976799256.9083895320.0021429191391.839391304138574614825.766613898
    13
    2025-04-28 00:00:00.000BOI1084840.7753054430.37754912450.000016589493.6973918138574614825.766613898
    14
    2025-04-28 00:00:00.000MEAT35160.13318580630.0038053087520.0000014656521740.0732826087138574614825.766613898
    15
    2025-04-28 00:00:00.000BLUB22100.22684705650.010311229840.00017540102780.1037285389138574614825.766613898
    16
    2025-04-28 00:00:00.000WINK110.1109724070.1109724070.1109724070.11097240736544711047779.0430907
    17
    2025-04-28 00:00:00.000NOCHILL231811.0149528060.47891099160.000052354252175.816557417138574614825.766613898
    18
    2025-04-28 00:00:00.000GURS123361.4230774780.011569735591.116086957e-70.1450913043138574614825.766613898
    19
    2025-04-28 00:00:00.000MU1798.7642390850.51554347560.00083610949573.309600087138574614825.766613898
    20
    2025-04-28 00:00:00.000KIMBO860.099835804370.012479475550.000026945973910.07282695652138574614825.766613898
    ...
    1186
    131KB
    43s