Updated 2025-04-10
    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
    WEEK
    NEW_USERS
    TOTAL_USERS
    1
    2023-04-24 00:00:00.00056820757
    2
    2023-01-09 00:00:00.0001571
    3
    2023-12-18 00:00:00.00011015222350
    4
    2023-10-30 00:00:00.0005794169867
    5
    2024-12-23 00:00:00.0008251593241
    6
    2022-12-05 00:00:00.000325
    7
    2022-06-06 00:00:00.00011
    8
    2023-05-29 00:00:00.000617938230
    9
    2025-04-07 00:00:00.0001586670299
    10
    2025-03-10 00:00:00.0004906654205
    11
    2024-10-07 00:00:00.0004249531098
    12
    2025-02-24 00:00:00.0003674646435
    13
    2024-01-22 00:00:00.00013662285486
    14
    2024-02-19 00:00:00.0007304322903
    15
    2023-01-02 00:00:00.0001856
    16
    2023-03-06 00:00:00.00014384335
    17
    2023-06-26 00:00:00.000788059858
    18
    2023-12-11 00:00:00.0009018211335
    19
    2023-02-20 00:00:00.0004862126
    20
    2023-05-15 00:00:00.000405726455
    ...
    128
    5KB
    44s