Updated 11 hours ago
    with price_tab as (
    select
    HOUR::date as day,
    avg(PRICE) as token_price
    from ethereum.price.ez_prices_hourly
    where SYMBOL = 'OLAS'
    group by 1
    ),

    t1 as (select
    BLOCK_TIMESTAMP,
    TX_HASH,
    DECODED_LOG:owner as claimer,
    DECODED_LOG:topUp / 1e18 as volume_OLAS,
    DECODED_LOG:topUp / 1e18 * token_price as volume_usd
    from ethereum.core.ez_decoded_event_logs l
    left join price_tab p on l.BLOCK_TIMESTAMP::date = p.day
    where CONTRACT_ADDRESS = '0xeed0000fe94d7cfef4dc0ca86a223f0f603a61b8'
    and EVENT_NAME = 'IncentivesClaimed'
    and TOPICS[0] = '0x928890dff971de1394b7440848938a868d83445d2f7fb4b07938ae626c7cb130'

    union all

    select
    BLOCK_TIMESTAMP,
    TX_HASH,
    DECODED_LOG:owner as claimer,
    DECODED_LOG:topUp / 1e18 as volume_OLAS,
    DECODED_LOG:topUp / 1e18 * token_price as volume_usd
    from ethereum.core.ez_decoded_event_logs l
    left join price_tab p on l.BLOCK_TIMESTAMP::date = p.day
    where CONTRACT_ADDRESS = lower('0x5650300fCBab43A0D7D02F8Cb5d0f039402593f0')
    and EVENT_NAME = 'IncentivesClaimed'
    and TOPICS[0] = '0xbe9ae4aaa6e41ee5c966cad91e78ec7202d0062fe8c9564b28629a614003cf82'
    )

    Last run: about 11 hours agoAuto-refreshes every 12 hours
    WEEK
    Emissions
    Claimers
    Volume (OLAS)
    Volume (USD)
    Total Emissions
    Total volume (OLAS)
    Total volume (USD)
    1
    2025-04-07 00:00:00.00032773.512070126211.5848929641092437739.581216585884946.19310056
    2
    2025-03-31 00:00:00.0005222502.0248956777600.9303627061062436966.069146465884734.6082076
    3
    2025-03-17 00:00:00.0001133480.43294250812641.4023686281012414464.044250785877133.67784489
    4
    2025-03-10 00:00:00.000325784.2547564722168.7238171881002380983.611308275864492.27547626
    5
    2025-03-03 00:00:00.00015547111.32439054521477.410418367972375199.35655185862323.55165908
    6
    2025-02-03 00:00:00.00010495961.02194370950837.713344129822328088.032161255840846.14124071
    7
    2025-01-13 00:00:00.0001111.9422165415.320868636722232127.010217555790008.42789658
    8
    2024-12-30 00:00:00.0008436673.605365650820.336718877712232115.068001015789993.10702795
    9
    2024-12-09 00:00:00.0001130544.29731183167999.241890464632195441.462635415739172.77030907
    10
    2024-12-02 00:00:00.0006336359.36213466874465.236355842622164897.165323575671173.5284186
    11
    2024-11-04 00:00:00.0006429372.4987839663042.714591313562128537.803188915596708.29206276
    12
    2024-10-28 00:00:00.0008322788.50505736548598.763390597502099165.304404955533665.57747145
    13
    2024-10-21 00:00:00.0002196420.812110806181485.702362346422076376.799347585485066.81408085
    14
    2024-10-14 00:00:00.0002124999.27875724529910.595396429401979955.987236775303581.11171851
    15
    2024-10-07 00:00:00.0001112499.63937862313623.565286084381954956.708479535273670.51632208
    16
    2024-09-30 00:00:00.00085155043.382860737193664.446603521371942457.069100915260046.95103599
    17
    2024-09-23 00:00:00.0001112499.63937862319364.024670716291787413.686240175066382.50443247
    18
    2024-09-16 00:00:00.0001112499.63937862311169.366820208281774914.046861555047018.47976176
    19
    2024-09-09 00:00:00.0002150.35186556636.042379381271762414.407482925035849.11294155
    20
    2024-08-26 00:00:00.0004353592.11948275544874.694714078251762364.055617365035813.07056217
    30
    3KB
    14s