0-MIDuser dis
    Updated 2025-03-04
    with tab1 as (
    select
    ORIGIN_FROM_ADDRESS
    ,count(distinct TX_HASH) as bridges
    from arbitrum.core.ez_decoded_event_logs
    where EVENT_NAME='LiFiTransferStarted'
    and DECODED_LOG:bridgeData:integrator='jumper.exchange'
    and ORIGIN_TO_ADDRESS='0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
    and BLOCK_TIMESTAMP::date>=current_date-30
    group by 1
    )
    select bridges
    ,count(distinct ORIGIN_FROM_ADDRESS) as bridgers
    from tab1
    group by 1


    Last run: about 2 months ago
    BRIDGES
    BRIDGERS
    1
    416
    2
    912
    3
    463
    4
    6973
    5
    337
    6
    307
    7
    561
    8
    742
    9
    442
    10
    991
    11
    9438
    12
    11238
    13
    542
    14
    3410
    15
    682
    16
    3811
    17
    603
    18
    402
    19
    8566
    20
    372
    78
    592B
    42s