ArioUntitled Query
Updated 2023-01-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
⌄
select
date_trunc('month', block_timestamp) as date,
regexp_substr(sender, '[a-zA-Z]+|\d+') as "Source Chain",
count(distinct tx_id) as "# Transfer",
count(distinct sender) as "# Sender"
from
osmosis.core.fact_transfers
where
transfer_type = 'IBC_TRANSFER_IN'
and receiver like 'osmo%'
--and amount / pow(10, decimal) < 10000000
group by
1,
2
/*having
"Volume" is not null*/
Run a query to Download Data