mamad-5XN3k3axelar 5
Updated 2023-10-02
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
›
⌄
-- forked from 2023-07-07 03:46 PM @ https://flipsidecrypto.xyz/edit/queries/f875a656-e0e1-4b31-a988-333943b8a0cf
with pricet as (
select
trunc(recorded_hour,'day') as day,
symbol,
avg(price) as price_usd
from osmosis.price.ez_prices
group by 1,2
),
bridget as (
SELECT
block_timestamp,
tx_hash,
source_chain,
sender,
destination_chain,
token_symbol,amount
from axelar.defi.ez_bridge_satellite
UNION
SELECT
block_timestamp,
tx_hash,
source_chain,
sender,
destination_chain,
token_symbol,
amount
from axelar.defi.ez_bridge_squid)
SELECT
trunc(block_timestamp,'day') as date,
token_symbol,
Run a query to Download Data