DESTINATION_CHAIN | VOLUME | USERS | |
---|---|---|---|
1 | base | 226402589.935759 | 89653 |
2 | linea | 38169726.6686577 | 33687 |
3 | Blast | 10762.619478 | 7 |
4 | ki | 7.214134 | 3 |
5 | Moonbeam | 45463107.7518991 | 24984 |
6 | optimism | 100245766.444305 | 54451 |
7 | lava | 1077.672175 | 5 |
8 | fantom | 75.972248065 | 7 |
9 | polygon | 290455.060957999 | 1968 |
10 | Binance | 523245.930181 | 8 |
11 | osmosis | 417631194.696069 | 85890 |
12 | immutable | 6607148.16035244 | 15209 |
13 | moonbeam | 11141.189476 | 61 |
14 | crescent | 15132.598867 | 22 |
15 | dymension | 11186.106446 | 20 |
16 | sommelier | 1.375758 | 1 |
17 | archway | 24664.87116 | 13 |
18 | persistence | 1.55152 | 2 |
19 | nolus | 0.96627 | 1 |
20 | Ethereum | 574655377.059906 | 46818 |
Pine AnalyticsSquid 4
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
63
2KB
61s