KaskoazulLUNA in main bridges
Updated 2022-03-15
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 ETH_BRIDGE AS (
select block_timestamp::date as fecha,
sum(event_amount) as total_amount,
event_currency as currency,
sum(event_amount_usd) as total_amount_usd
from terra.transfers
where event_from_address_name IN ('ethereum bridge')
and currency in ('LUNA')
and fecha >= '2022-01-01'
group by 1,3
),
BNB_BRIDGE AS (
select block_timestamp::date as fecha,
sum(event_amount) as total_amount,
event_currency as currency,
sum(event_amount_usd) as total_amount_usd
from terra.transfers
where event_from_address_name IN ('binance bridge')
and currency in ('LUNA')
and fecha >= '2022-01-01'
group by 1,3
),
HARM_BRIDGE AS (
select block_timestamp::date as fecha,
sum(event_amount) as total_amount,
event_currency as currency,
sum(event_amount_usd) as total_amount_usd
from terra.transfers
where event_from_address_name IN ('harmony bridge')
and currency in ('LUNA')
and fecha >= '2022-01-01'
group by 1,3
),
Run a query to Download Data