Ali3NDately Overview (PLSR Airdrop To CLY Stakers)
    Updated 6 days ago
    with pricet as (
    select date_trunc (hour,block_timestamp) as hour,
    avg (amount_in_usd/amount_out) as PLSRPrice
    from avalanche.defi.ez_dex_swaps
    where symbol_in = 'WAVAX'
    and (symbol_out = 'PLSR' or token_out = '0x7a842193d291840fc38b45f991c5b8cc908f8a7c')
    and block_timestamp >= '2025-02-05'
    group by 1 having plsrprice < 10
    )

    select date_trunc(hour,block_timestamp) as date,
    count (distinct tx_hash) as Transactions,
    count (distinct to_address) as Claimers,
    sum (amount) as Claimed_Volume,
    sum (amount_usd) as Volume_USD,
    sum (amount*plsrprice) as USD_Volume,
    Claimed_Volume / Claimers as Average_Claimed_Per_User,
    USD_Volume / Claimers as Average_USD_Claimed_Per_User,
    sum (Claimed_Volume) over (order by date) as Total_Claimed_Volume,
    sum (USD_Volume) over (order by date) as Total_USD_Claimed_Volume,
    from avalanche.core.ez_token_transfers t1 full outer join pricet t2 on date_trunc (hour,t1.block_timestamp) = t2.hour
    where contract_address = '0x7a842193d291840fc38b45f991c5b8cc908f8a7c'
    and origin_to_address = '0x62685d3eaace96d6145d35f3b7540d35f482de5b'
    and to_address != '0x62685d3eaace96d6145d35f3b7540d35f482de5b'
    --and tx_hash = '0xfb308a0452fe820e65e5edf6e9ae024f7ebd7a1f420e4bc67be4e0a8458e62f3'
    group by 1
    order by 1 desc


    Last run: 6 days agoAuto-refreshes every 1 hour
    DATE
    TRANSACTIONS
    CLAIMERS
    CLAIMED_VOLUME
    VOLUME_USD
    USD_VOLUME
    AVERAGE_CLAIMED_PER_USER
    AVERAGE_USD_CLAIMED_PER_USER
    TOTAL_CLAIMED_VOLUME
    TOTAL_USD_CLAIMED_VOLUME
    1
    2025-03-31 14:00:00.0001120.071643780.273577909720.07164378576429.0300525938041.642832871
    2
    2025-03-31 12:00:00.00022109.7865855681.48792990954.893292784576408.9584088138041.642832871
    3
    2025-03-31 11:00:00.000113.3263173170.044906581043.326317317576299.1718232458041.642832871
    4
    2025-03-31 09:00:00.0001192.1855544151.29994076892.185554415576295.8455059298041.642832871
    5
    2025-03-31 07:00:00.00011521.0813725257.428009755521.081372525576203.6599515138041.642832871
    6
    2025-03-30 20:00:00.00022127.7737943911.84320214963.886897195575682.5785789888041.642832871
    7
    2025-03-30 18:00:00.0001159.4445489380.874088697659.444548938575554.8047845978041.642832871
    8
    2025-03-30 14:00:00.0001115.4982390690.227693309215.498239069575495.3602356598041.642832871
    9
    2025-03-30 09:00:00.00011485.3852357887.164902519485.385235788575479.861996598041.642832871
    10
    2025-03-30 03:00:00.00011378.7889819145.6485429655.676881987378.7889819145.676881987574994.4767608038041.642832871
    11
    2025-03-29 21:00:00.0001193.7886961971.41316680793.788696197574615.6877788898035.965950884
    12
    2025-03-29 14:00:00.00011104.0768121531.583390275104.076812153574521.8990826928035.965950884
    13
    2025-03-29 12:00:00.000110.50422721370.0084219861360.0076602733070.50422721370.007660273307574417.8222705398035.965950884
    14
    2025-03-29 08:00:00.000115.192753230.090968935890.088035572875.192753230.08803557287574417.3180433258035.958290611
    15
    2025-03-29 02:00:00.00011204.9153258654.568046214204.915325865574412.1252900958035.870255038
    16
    2025-03-28 23:00:00.000117.039151190.12133793187.03915119574207.209964238035.870255038
    17
    2025-03-28 18:00:00.000110.434196180.0076808045070.0078014902590.434196180.007801490259574200.170813048035.870255038
    18
    2025-03-28 15:00:00.00022236.1636620624.243700416118.081831031574199.736616868035.862453548
    19
    2025-03-28 13:00:00.00011132.5842684412.4482069662.50653415132.5842684412.50653415573963.5729547988035.862453548
    20
    2025-03-28 12:00:00.00011150.0285345532.76049353150.028534553573830.9886863578033.355919398
    ...
    602
    68KB
    22s