SWAP_PAIR | SWAP_ROUTE | TOTAL_SWAPS | TOTAL_VOLUME_USD | |
---|---|---|---|---|
1 | ZEC-NEAR | Zcash -> Near | 5838 | 819645.792586169 |
2 | NEAR-ZEC | Near -> Zcash | 3697 | 462030.511731441 |
3 | BTC-USDC | Bitcoin -> Ethereum | 2087 | 720902.06487922 |
4 | USDC-BTC | Ethereum -> Bitcoin | 1931 | 1320884.45600959 |
5 | NEAR-USDC | Near -> Ethereum | 1869 | 857597.928069821 |
6 | USDC-NEAR | Ethereum -> Near | 1654 | 606295.462238321 |
7 | XRP-USDC | Ripple -> Ethereum | 1454 | |
8 | USDC-XRP | Ethereum -> Ripple | 1453 | 9026.396420057 |
9 | USDC-DOGE | Ethereum -> Doge | 1280 | 3894.528806866 |
10 | ZEC-USDT | Zcash -> Ethereum | 1077 | 444276.223079695 |
datavortexchain route
Updated 2025-05-04
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
›
⌄
WITH sender_transactions as (
select
tx_hash,
block_timestamp,
old_owner_id as sender_address,
amount_raw as sent_amount,
token_id as sent_token
from near.defi.fact_intents
where log_event = 'mt_transfer'
and RECEIPT_SUCCEEDED = TRUE
qualify row_number() over (partition by tx_hash, log_index order by log_event_index desc) = 1
),
receiver_transactions as (
select
tx_hash,
block_timestamp,
new_owner_id as receiver_address,
token_id as received_token
from near.defi.fact_intents
where log_event = 'mt_transfer'
and RECEIPT_SUCCEEDED = TRUE
qualify row_number() over (partition by tx_hash, log_index order by log_event_index asc) = 1
),
swap_details as (
select
s.tx_hash,
s.block_timestamp,
s.sender_address,
s.sent_amount,
split(s.sent_token, ':')[1] :: string as input_token,
split(r.received_token, ':')[1] :: string as output_token
from sender_transactions s
left join receiver_transactions r using(tx_hash)
where split(s.sent_token, ':')[1] :: string != split(r.received_token, ':')[1] :: string
or r.received_token is null
),
Last run: 25 days ago
10
532B
5s