matejchiBridging on Optimism
    Updated 2025-04-14
    with top_5 as
    (
    select
    platform,
    sum(amount_usd) as total_volume
    from optimism.defi.ez_bridge_activity
    where platform != 'multichain'
    group by platform
    order by total_volume desc
    limit 5
    )

    select
    date_trunc ('month', block_timestamp) as month,
    platform,
    sum(amount_usd) as monthly_amount,
    from optimism.defi.ez_bridge_activity
    where
    month < date_trunc('month', current_date)
    and platform in (select platform from top_5)
    group by month, platform
    order by month asc








    Last run: 2 months ago
    MONTH
    PLATFORM
    MONTHLY_AMOUNT
    1
    2021-11-01 00:00:00.000hop23897445.66
    2
    2021-12-01 00:00:00.000hop29538224.47
    3
    2021-12-01 00:00:00.000celer_cbridge16546441.48
    4
    2022-01-01 00:00:00.000celer_cbridge18548768.95
    5
    2022-01-01 00:00:00.000hop23336251.39
    6
    2022-02-01 00:00:00.000celer_cbridge5783416.22
    7
    2022-02-01 00:00:00.000hop16458998.42
    8
    2022-03-01 00:00:00.000hop18077349.19
    9
    2022-03-01 00:00:00.000stargate
    10
    2022-03-01 00:00:00.000celer_cbridge4568672.9
    11
    2022-04-01 00:00:00.000stargate
    12
    2022-04-01 00:00:00.000hop41005688.25
    13
    2022-04-01 00:00:00.000celer_cbridge3950814.71
    14
    2022-05-01 00:00:00.000stargate
    15
    2022-05-01 00:00:00.000celer_cbridge2758165
    16
    2022-05-01 00:00:00.000hop25102285.46
    17
    2022-06-01 00:00:00.000stargate
    18
    2022-06-01 00:00:00.000hop42149758.81
    19
    2022-06-01 00:00:00.000celer_cbridge8551835.01
    20
    2022-07-01 00:00:00.000stargate
    ...
    143
    7KB
    3s