Moepath+sym over time
Updated 2024-04-24
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 prc as (
select
hour :: date as date,
token_address,
avg(price) as avg_price
from
crosschain.price.ez_hourly_token_prices
group by
1,
2
),
mid as (
select
BLOCK_TIMESTAMP,
TX_HASH,
AMOUNT,
SENDER,
TOKEN_ADDRESS,
TOKEN_SYMBOL,
concat(SOURCE_CHAIN, ' -> ', destination_chain) as path
from
axelar.defi.ez_bridge_squid
where
amount is not null
union
all
select
BLOCK_TIMESTAMP,
TX_HASH,
AMOUNT,
SENDER,
TOKEN_ADDRESS,
TOKEN_SYMBOL,
concat(SOURCE_CHAIN, ' -> ', destination_chain) as path
from
axelar.defi.ez_bridge_satellite
QueryRunArchived: QueryRun has been archived