andreafiandroWormhole Dominance
    Updated 2024-02-06
    -- forked from Chain overview @ https://flipsidecrypto.xyz/edit/queries/706c94ba-c750-436f-9e34-6949b1d5071f

    SELECT date_trunc('day', block_timestamp) as day,
    CASE WHEN (platform = 'wormhole' or platform = 'axelar') THEN 'wormhole_axelar' ELSE 'other' END as bridge,
    --platform as bridge,
    COUNT(DISTINCT TX_HASH) as total_txs
    FROM ethereum.defi.ez_bridge_activity
    WHERE block_timestamp > '2023-10-01' AND Destination_chain in ('near', 'solana', 'sui', 'osmosis', 'aptos', 'telos','sei','injective')
    AND platform != 'dln_bridge'
    GROUP BY day, platform
    ORDER BY day


    Last run: over 1 year ago
    DAY
    BRIDGE
    TOTAL_TXS
    1
    2023-10-01 00:00:00.000other25
    2
    2023-10-01 00:00:00.000wormhole_axelar7
    3
    2023-10-01 00:00:00.000wormhole_axelar61
    4
    2023-10-02 00:00:00.000other5
    5
    2023-10-02 00:00:00.000other20
    6
    2023-10-02 00:00:00.000wormhole_axelar6
    7
    2023-10-02 00:00:00.000wormhole_axelar57
    8
    2023-10-03 00:00:00.000other2
    9
    2023-10-03 00:00:00.000other2
    10
    2023-10-03 00:00:00.000other8
    11
    2023-10-03 00:00:00.000wormhole_axelar3
    12
    2023-10-03 00:00:00.000wormhole_axelar62
    13
    2023-10-04 00:00:00.000wormhole_axelar9
    14
    2023-10-04 00:00:00.000wormhole_axelar38
    15
    2023-10-04 00:00:00.000other4
    16
    2023-10-04 00:00:00.000other5
    17
    2023-10-04 00:00:00.000other7
    18
    2023-10-05 00:00:00.000other2
    19
    2023-10-05 00:00:00.000wormhole_axelar5
    20
    2023-10-05 00:00:00.000other2
    ...
    663
    28KB
    4s