adriaparcerisasnear bridge 6
    Updated 2025-05-19
    SELECT
    trunc(block_timestamp,'month') as month,
    destination_chain,
    --direction,
    sum(amount_usd) AS TOTAL_VOLUME_USD
    FROM
    near.defi.ez_bridge_activity
    WHERE
    RECEIPT_SUCCEEDED = TRUE
    AND AMOUNT_USD IS NOT NULL --and (source_chain = 'near' or destination_chain='near')
    and direction='outbound'
    GROUP BY
    month,destination_chain having destination_chain is not null
    ORDER BY
    month desc, TOTAL_VOLUME_USD DESC




    Last run: 10 days ago
    MONTH
    DESTINATION_CHAIN
    TOTAL_VOLUME_USD
    1
    2025-05-01 00:00:00.000eth1855900.66070108
    2
    2025-05-01 00:00:00.000sol773523.9895408
    3
    2025-05-01 00:00:00.000aurora99995.926660773
    4
    2025-05-01 00:00:00.000celo1481.501617487
    5
    2025-05-01 00:00:00.000solana1043.50002331
    6
    2025-05-01 00:00:00.000ethereum889.6415
    7
    2025-05-01 00:00:00.000binance smart chain99.234553519
    8
    2025-04-01 00:00:00.000eth2365133.13462652
    9
    2025-04-01 00:00:00.000aurora491606.653148711
    10
    2025-04-01 00:00:00.000sol206131.013903494
    11
    2025-04-01 00:00:00.000ethereum54551.856231357
    12
    2025-04-01 00:00:00.000celo8251.879848196
    13
    2025-04-01 00:00:00.000solana3360.238278655
    14
    2025-04-01 00:00:00.000binance smart chain429.659106734
    15
    2025-03-01 00:00:00.000ethereum792494.48454603
    16
    2025-03-01 00:00:00.000aurora576203.574157839
    17
    2025-03-01 00:00:00.000sol102183.644087598
    18
    2025-03-01 00:00:00.000solana5112.001187735
    19
    2025-03-01 00:00:00.000celo4487.902826467
    20
    2025-03-01 00:00:00.000binance smart chain1063.566547195
    ...
    380
    20KB
    253s