EVENTS | VOLUME | USERS | |
---|---|---|---|
1 | 2002002 | 3074001426.80232 | 665558 |
Pine AnalyticsSquid 2
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: 14 days agoAuto-refreshes every 3 hours
1
35B
65s