mehrancrypto-dxoepqAXL 3
Updated 2022-12-09
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 tab1 as (
SELECT tx_id , RECEIVER as sender
from axelar.core.fact_transfers
where transfer_type in ('IBC_TRANSFER_IN' , 'IBC_TRANSFER_OUT' )
order by block_timestamp DESC
)
SELECT FEE , FEE_DENOM , B.* ,
case when SENDER ilike 'osmo%' then 'Osmo'
when SENDER ilike 'Cosm%' then 'Cosmos'
when SENDER ilike 'secret%' then 'Secret Network'
when SENDER ilike 'akash%' then 'Akash'
when SENDER ilike 'cro%' then 'Crypto.org'
when SENDER ilike 'star%' then 'Starname'
when SENDER ilike 'sif%' then 'Sifchain'
when SENDER ilike 'cert%' then 'Shentu'
when SENDER ilike 'iaa%' then 'IRISnet'
when SENDER ilike 'regen%' then 'Regen'
when SENDER ilike 'pers%' then 'Persistence'
when SENDER ilike 'ixo%' then 'ixo'
when SENDER ilike 'emoney%' then 'e-Money'
when SENDER ilike 'agoric%' then 'Agoric'
when SENDER ilike 'bostr%' then 'Bostrom'
when SENDER ilike 'juno%' then 'Juno'
when SENDER ilike 'star%' then 'Stargaze'
when SENDER ilike 'axel%' then 'Axelar'
when SENDER ilike 'somm%' then 'Sommelier'
when SENDER ilike 'umee%' then 'Umee'
when SENDER ilike 'grav%' then 'Gravity Bridge'
when SENDER ilike 'tgrade%' then 'Tgrade'
when SENDER ilike 'stride%' then 'Stride'
when SENDER ilike 'kava%' then 'Kava'
when SENDER ilike 'evmos%' then 'Evmos'
when SENDER ilike 'ter%' then 'Terra'
when SENDER ilike 'cre%' then 'Crescent'
when SENDER ilike 'kujir%' then 'Kujira'
when SENDER ilike 'ki%' then 'Ki'
Run a query to Download Data