messariaxelar_transfer_volume copy
Updated 2024-11-25
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
›
⌄
-- 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