datavortexBridge activities
Updated 2025-03-25Copy Reference Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
›
⌄
SELECT
COUNT(DISTINCT tx_id) AS "Total Bridges",
COUNT(DISTINCT user_address) AS "Total Bridgers",
COUNT(DISTINCT mint) AS "token sent for bridging",
COUNT(DISTINCT platform) AS "total platforms involved in bridging",
COUNT(DISTINCT CASE WHEN succeeded ='True' THEN tx_id END) AS "successful bridges",
COUNT(DISTINCT CASE WHEN succeeded ='False' THEN tx_id END) AS "failed bridges",
COUNT(DISTINCT CASE WHEN direction ='inbound' THEN tx_id END) AS "inbound bridges",
COUNT(DISTINCT CASE WHEN direction ='outbound' THEN tx_id END) AS "outbound bridges",
FROM solana.defi.fact_bridge_activity
WHERE
block_timestamp > '2024-08-31'AND block_timestamp < '2024-10-01'
QueryRunArchived: QueryRun has been archived