DATE | AGGREGATOR | BRIDGENAME | N_TXNS | VOL | |
---|---|---|---|---|---|
1 | 2025-06-11 00:00:00.000 | lifi | symbiosis | 3 | 398.17098436 |
2 | 2025-06-10 00:00:00.000 | lifi | across | 18 | 977.048104396 |
3 | 2025-06-17 00:00:00.000 | rango | across | 8 | 216.374950856 |
4 | 2025-06-15 00:00:00.000 | lifi | mayan | 14 | 2283.46830837 |
5 | 2025-06-09 00:00:00.000 | lifi | symbiosis | 2 | 1592.47553465 |
6 | 2025-06-09 00:00:00.000 | lifi | mayan | 11 | 575.390655897 |
7 | 2025-06-22 00:00:00.000 | rango | across | 9 | 146.17643687 |
8 | 2025-06-03 00:00:00.000 | lifi | mayan | 7 | 1556.324042171 |
9 | 2025-06-03 00:00:00.000 | rango | across | 8 | 2580.055107602 |
10 | 2025-06-07 00:00:00.000 | lifi | cbridge | 4 | 1719.326757078 |
11 | 2025-06-23 00:00:00.000 | lifi | stargateV2 | 1 | 698.8199943 |
12 | 2025-06-08 00:00:00.000 | lifi | stargateV2 | 2 | 7.906976156 |
13 | 2025-06-10 00:00:00.000 | lifi | stargateV2Bus | 6 | 93.051933901 |
14 | 2025-06-18 00:00:00.000 | lifi | mayan | 10 | 1308.920673987 |
15 | 2025-06-07 00:00:00.000 | lifi | stargateV2 | 2 | 232.300358 |
16 | 2025-06-18 00:00:00.000 | lifi | stargateV2Bus | 8 | 45.868254117 |
17 | 2025-06-04 00:00:00.000 | lifi | symbiosis | 1 | 169.80637 |
18 | 2025-06-04 00:00:00.000 | lifi | across | 17 | 228.312361864 |
19 | 2025-06-08 00:00:00.000 | lifi | mayan | 4 | 147.178701193 |
20 | 2025-06-15 00:00:00.000 | lifi | cbridge | 5 | 383.911769038 |
LI.FI1Month Comparison Time Series copy
Updated 2025-06-23Copy Reference Fork
999
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- forked from 1Month Comparison Time Series @ https://flipsidecrypto.xyz/studio/queries/5931e7ad-5eec-46ff-bd53-2ec9a48ce2a3
-- Rango on Base: tx_hash sample = '0x34e7e70271abe0087d70f786927521967730eaa33053b48b45ae8df39a1e5945'
-- event_name = 'RangoBridgeInitiated'
WITH decodedTXN AS (
SELECT tx_hash, src_chain, decoded_log, block_timestamp, event_name
FROM (
SELECT tx_hash, decoded_log, block_timestamp, event_name , 'Ethereum' AS src_chain FROM ethereum.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date-30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'Polygon' AS src_chain FROM polygon.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'BSC' AS src_chain FROM bsc.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'BASE' AS src_chain FROM base.core.ez_decoded_event_logs
WHERE block_timestamp >=current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'Arbitrum' AS src_chain FROM arbitrum.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'OP' AS src_chain FROM optimism.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'Avalanche' AS src_chain FROM avalanche.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
UNION
SELECT tx_hash, decoded_log, block_timestamp, event_name, 'Gnosis' AS src_chain FROM gnosis.core.ez_decoded_event_logs
WHERE block_timestamp >= current_date - 30
)),
prices as (
SELECT hour, price, decimals, symbol, iff(is_native,'0x0000000000000000000000000000000000000000', token_address) as token_address, 'Arbitrum' AS chain FROM arbitrum.price.ez_prices_hourly
UNION
Last run: 10 days ago
200
12KB
300s