Afonso_DiazGrouping txns
    Updated 4 hours ago
    with

    pricet as (
    select
    hour::date as date,
    token_address,
    avg(price) as token_price_usd
    from
    ronin.price.ez_prices_hourly
    group by 1, 2
    ),

    main as (
    select
    tx_hash,
    block_timestamp,
    utils.udf_hex_to_int(topics[3])::bigint as amount_unadj,
    amount_unadj / pow(10, a.decimals) as amount,
    amount * token_price_usd as amount_usd,
    '0x' || right(topics[2], 40) as token_address,
    a.symbol,
    origin_from_address as user,
    iff(topics[0] = '0x5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd7', 'Stake', 'Unstake') as event_name
    from
    ronin.core.fact_event_logs
    left join
    ronin.core.dim_contracts a on address = '0x' || right(topics[2], 40)
    left join
    pricet b on block_timestamp::date = date and b.token_address = a.address
    where
    tx_succeeded
    and origin_to_address = '0x05b0bb3c1c320b280501b86706c3551995bc8571'
    and topics[0] in ('0x5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd7', '0xd8654fcc8cf5b36d30b3f5e4688fc78118e6d68de60b9994e09902268b57c3e3')
    )

    select
    Last run: about 4 hours ago
    EVENT_NAME
    TYPE
    TRANSACTIONS
    1
    StakeCrab ($50 - $100)24335
    2
    StakeDolphin ($1,000 - $5,000)6185
    3
    StakeFish ($500 - $1,000)5449
    4
    StakeGiant Squid (More than $100,000)482
    5
    StakeOctopus ($100 - $500)27661
    6
    StakePlankton (Less than $10)368556
    7
    StakeShark ($5,000 - $10,000)1413
    8
    StakeShrimp ($10 - $50)104367
    9
    StakeWhale ($10,000 - $100,000)2099
    10
    UnstakeCrab ($50 - $100)8870
    11
    UnstakeDolphin ($1,000 - $5,000)4676
    12
    UnstakeFish ($500 - $1,000)3631
    13
    UnstakeGiant Squid (More than $100,000)433
    14
    UnstakeOctopus ($100 - $500)12122
    15
    UnstakePlankton (Less than $10)48602
    16
    UnstakeShark ($5,000 - $10,000)1213
    17
    UnstakeShrimp ($10 - $50)32249
    18
    UnstakeWhale ($10,000 - $100,000)1729
    18
    764B
    26s