WEEK | NEW_USERS | TOTAL_USERS | |
---|---|---|---|
1 | 2023-04-24 00:00:00.000 | 568 | 20757 |
2 | 2023-01-09 00:00:00.000 | 15 | 71 |
3 | 2023-12-18 00:00:00.000 | 11015 | 222350 |
4 | 2023-10-30 00:00:00.000 | 5794 | 169867 |
5 | 2024-12-23 00:00:00.000 | 8251 | 593241 |
6 | 2022-12-05 00:00:00.000 | 3 | 25 |
7 | 2022-06-06 00:00:00.000 | 1 | 1 |
8 | 2023-05-29 00:00:00.000 | 6179 | 38230 |
9 | 2025-04-07 00:00:00.000 | 1586 | 670299 |
10 | 2025-03-10 00:00:00.000 | 4906 | 654205 |
11 | 2024-10-07 00:00:00.000 | 4249 | 531098 |
12 | 2025-02-24 00:00:00.000 | 3674 | 646435 |
13 | 2024-01-22 00:00:00.000 | 13662 | 285486 |
14 | 2024-02-19 00:00:00.000 | 7304 | 322903 |
15 | 2023-01-02 00:00:00.000 | 18 | 56 |
16 | 2023-03-06 00:00:00.000 | 1438 | 4335 |
17 | 2023-06-26 00:00:00.000 | 7880 | 59858 |
18 | 2023-12-11 00:00:00.000 | 9018 | 211335 |
19 | 2023-02-20 00:00:00.000 | 486 | 2126 |
20 | 2023-05-15 00:00:00.000 | 4057 | 26455 |
Pine AnalyticsSquid 5
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
...
128
5KB
44s