mmdrezaEclipse Weekly Update
    Updated 9 days ago
    -- forked from flyingfish / All bridges by Bridge @ https://flipsidecrypto.xyz/flyingfish/q/KgBj40aaWPtd/all-bridges-by-bridge

    with hyperlane_bridges as (
    select
    'Hyperlane' as bridge
    , date
    , volume_usd_in
    , volume_usd_out
    , tvl_usd
    , events_count
    from $query('19f93923-bf61-4c76-a496-194ee7e6d11f')
    )

    , canonical_bridges as (
    select
    'Canonical' as bridge
    , date
    , volume_usd_in
    , volume_usd_out
    , tvl_usd
    , events_count
    from $query('3b847d0f-cb54-439d-90d7-a6c81442058c')
    group by all
    )

    , aggregated as (
    select
    date
    , zeroifnull(a.volume_usd_in) + zeroifnull(b.volume_usd_in) as volume_in
    , zeroifnull(a.volume_usd_out) + zeroifnull(b.volume_usd_out) as volume_out
    , sum(volume_in) over (order by date) as total_volume_in
    , sum(volume_out) over (order by date) as total_volume_out
    , total_volume_in - total_volume_out as total_gross_volume
    , a.tvl_usd + b.tvl_usd as total_bridge_tvl
    , zeroifnull(a.events_count) + zeroifnull(b.events_count) as counter
    , sum(counter) over (order by date) as total_bridges
    Last run: 9 days ago
    DATE
    VOLUME_IN
    VOLUME_OUT
    TOTAL_VOLUME_IN
    TOTAL_VOLUME_OUT
    TOTAL_GROSS_VOLUME
    TOTAL_BRIDGE_TVL
    COUNTER
    TOTAL_BRIDGES
    AVG_USD_BRIDGE_SIZE
    1
    2025-03-29 00:00:00.0001808950.95931863-1339941.09437086491715154.518707-259138143.274793750853297.793501147580259.5898672604789821950.662615698
    2
    2025-03-28 00:00:00.0001955282.2314671-1082401.0647243489906203.559389-257798202.180422747704405.739811151377025.1762982948787217949.807239605
    3
    2025-03-27 00:00:00.0001843651.83990088-1514898.03989472487950921.327922-256715801.115698744666722.44362158742672.5896512842784269949.504216594
    4
    2025-03-26 00:00:00.0001803334.68675479-1051900.62202228486107269.488021-255200903.075803741308172.563824158665397.3540173051781427948.659532578
    5
    2025-03-25 00:00:00.0001097939.04775552-985040.707141687484303934.801266-254149002.453781738452937.255047160961905.1969491868778376948.709797392
    6
    2025-03-24 00:00:00.0001671357.0499561-1608024.81490805483205995.753511-253163961.746639736369957.50015161399368.3578121929776508948.309557017
    7
    2025-03-23 00:00:00.0001558256.01522727-1501969.50748183481534638.703555-251555936.931731733090575.635286155714315.3199851827774579946.437452649
    8
    2025-03-22 00:00:00.0001823195.69013145-1237062.18049983479976382.688327-250053967.42425730030350.112577154871705.9463031821772752944.714928092
    9
    2025-03-21 00:00:00.0001622724.94609531-1260290.51364602478153186.998196-248816905.24375726970092.241946153509485.088112955770931942.976858165
    10
    2025-03-20 00:00:00.0002005691.45287639-1882316.27554588476530462.052101-247556614.730104724087076.782204153810493.80572526767976942.851178659
    11
    2025-03-19 00:00:00.0002319959.97571074-1826312.09720121474524770.599224-245674298.454558720199069.053782155715206.9410712210765450940.88323085
    12
    2025-03-18 00:00:00.0001755821.30546822-1211250.35138445472204810.623513-243847986.357357716052796.98087147746398.2873362090763240938.175144097
    13
    2025-03-17 00:00:00.0001138752.72359166-883592.75952451470448989.318045-242636736.005972713085725.324017148995248.1313892125761150936.853084575
    14
    2025-03-16 00:00:00.0001203756.10990989-1075161.84860194469310236.594454-241753143.246448711063379.840901146635875.7570922155759025936.811540912
    15
    2025-03-15 00:00:00.0002016077.9242798-1295993.12388461468106480.484544-240677981.397846708784461.882389149626202.9755681703756870936.467903183
    16
    2025-03-14 00:00:00.0001891744.21637615-1608437.46776968466090402.560264-239381988.273961705472390.834225147289709.513732151755167934.193881399
    17
    2025-03-13 00:00:00.0001859223.95106463-1611045.3915086464198658.343888-237773550.806191701972209.150079142772280.7469512141753016932.214201491
    18
    2025-03-12 00:00:00.0002090315.43488949-2283587.95704092462339434.392823-236162505.414683698501939.807506144851128.5605252482750875930.250627345
    19
    2025-03-11 00:00:00.0001536456.90152306-1533116.93665591460249118.957934-233878917.457642694128036.415576146880155.3593872085748393927.491353361
    20
    2025-03-10 00:00:00.0001546170.08264698-1374273.73010495458712662.05641-232345800.520986691058462.577397147634350.3504882154746308925.96952274
    ...
    217
    32KB
    3s