DESTINATION_CHAIN | SOURCE_CHAIN | VOLUME | USERS | |
---|---|---|---|---|
1 | Polygon | binance | 33392682.6172357 | 49468 |
2 | Polygon | arbitrum | 21472633.5071026 | 38967 |
3 | osmosis | arbitrum | 58471126.6491529 | 33548 |
4 | celo | polygon | 4468313.87390255 | 31850 |
5 | Arbitrum | base | 41747085.8111896 | 28775 |
6 | binance | ethereum | 167324775.993678 | 25958 |
7 | binance | polygon | 40617815.6614149 | 25102 |
8 | celo | arbitrum | 6482819.50711255 | 23744 |
9 | Arbitrum | polygon | 20348858.2389075 | 20283 |
10 | Polygon | base | 15662837.8615947 | 20199 |
11 | base | arbitrum | 44812537.5423667 | 19392 |
12 | Arbitrum | binance | 37296039.7717559 | 19317 |
13 | Ethereum | binance | 149106713.676727 | 18870 |
14 | base | binance | 32968340.7824151 | 17761 |
15 | optimism | base | 18840664.4243411 | 16084 |
16 | optimism | arbitrum | 18178867.1806207 | 15939 |
17 | celo | base | 4962448.95534661 | 15311 |
18 | celo | binance | 10011010.8713728 | 15101 |
19 | Fantom | binance | 49904464.507897 | 15074 |
20 | osmosis | binance | 74828567.5029113 | 14629 |
Pine AnalyticsSquid Activity by Path
Updated 2025-04-10
99
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 tab0 as (
SELECT
date(recorded_hour) as date1,
median(price) as token_price
FROM osmosis.price.ez_prices
WHERE symbol LIKE 'AXL'
GROUP BY 1
), tab1 as (
SELECT
created_at,
id,
amount,
data,
fees,
data:call:receipt:from as user,
data:call:chain as source_chain,
data:call:returnValues:destinationChain as destination_chain,
fees:token:token_price:usd as token_price1,
case when NOT token_price1 is NULL
then token_price1
when data:approved:returnValues:symbol LIKE '%USDC%' then 1
when data:approved:returnValues:symbol LIKE '%USDT%' then 1
when data:approved:returnValues:symbol LIKE '%DAI%' then 1
when data:approved:returnValues:symbol LIKE '%MAI%' then 1
when call:returnValues:symbol LIKE '%USDC%' then 1
when call:returnValues:symbol LIKE '%USDT%' then 1
when call:returnValues:symbol LIKE '%DAI%' then 1
when call:returnValues:symbol LIKE '%MAI%' then 1
when call:returnValues:symbol LIKE 'AXL' then token_price
end as token_price2
FROM axelar.axelscan.fact_gmp
LEFT outer JOIN tab0
on date1 = date(created_at)
WHERE not amount is NULL
AND SIMPLIFIED_STATUS LIKE 'received'
Last run: 13 days agoAuto-refreshes every 3 hours
...
896
34KB
38s