CryptoLionTerra<>ETH bridge
Updated 2021-11-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
select
date_trunc('hour',block_timestamp) as time,
tx_id,
amount,
to_address,
from_address,
symbol
from ethereum.udm_events
where (to_address = '0x0000000000000000000000000000000000000000'
or from_address = '0x0000000000000000000000000000000000000000')
and (symbol = 'LUNA' or symbol = 'UST')
and block_timestamp >= getdate() - interval '15 days'
ORDER BY time desc
Run a query to Download Data