messariaxelar_transfer_volume copy
    Updated 2024-11-25
    -- forked from travernorm_messari / axelar_transfer_volume @ https://flipsidecrypto.xyz/travernorm_messari/q/iY9wZMIKWtwl/axelar_transfer_volume

    with axl_transfers as (
    select *, date_trunc('day',block_timestamp) as date from axelar.core.fact_transfers
    where currency = 'uaxl'
    )

    , aggregated as (
    SELECT DATE, CURRENCY, sum(amount/1e6) as amount from axl_transfers
    group by 1,2
    )

    ,axl_price as (
    select * from crosschain.price.fact_prices_ohlc_hourly
    where provider ='coinmarketcap'
    --and token_address = '0x467719ad09025fcc6cf6f8311755809d45a5e5f3'
    -- order by hour DESC
    )


    select *
    from aggregated
    -- left join axl_price
    -- on axl_price.hour = aggregated.date



    QueryRunArchived: QueryRun has been archived