magTop 10 $WMON Wrappers
    Updated 2025-03-12
    select
    origin_from_address as bebop_user,
    SUM(t.value) AS total_wrapped_mon
    from
    monad.testnet.fact_event_logs a
    join
    monad.testnet.fact_transactions t
    on
    a.tx_hash = t.tx_hash
    where
    a.TX_SUCCEEDED = 'TRUE'
    and a.ORIGIN_FUNCTION_SIGNATURE ='0xd0e30db0'
    and a.ORIGIN_TO_ADDRESS = '0x760afe86e5de5fa0ee542fc7b7b713e1c5425701'
    and a.CONTRACT_ADDRESS = '0x760afe86e5de5fa0ee542fc7b7b713e1c5425701'
    and a.block_timestamp::date >= '2025-02-19 04:00:00'
    group by
    bebop_user
    order by
    total_wrapped_mon desc
    limit 10;
    QueryRunArchived: QueryRun has been archived