forgashUST Peg on Ethereum, from Swaps copy
Updated 2023-04-13Copy Reference Fork
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 UST Peg on Ethereum, from Swaps @ https://flipsidecrypto.xyz/edit/queries/30d89f57-0e26-4286-9269-bb707137878a
with ust_in as (
select
block_number,
convert_timezone('UTC', 'America/Denver', block_timestamp) as block_timestamp,
tx_hash,
amount_out_usd / amount_in as ust_price
from ethereum.core.ez_dex_swaps
where token_in = '0xa693b19d2931d498c5b318df961919bb4aee87a5'
and block_timestamp ilike '2022-05%'
),
ust_out as (
select
block_number,
convert_timezone('UTC', 'America/Denver', block_timestamp) as block_timestamp,
tx_hash,
amount_in_usd / amount_out as ust_price
from ethereum.core.ez_dex_swaps
where token_out = '0xa693b19d2931d498c5b318df961919bb4aee87a5'
and block_timestamp ilike '2022-05%'
),
combo as (
select * from ust_in
union
select * from ust_out
)
Run a query to Download Data