adriaparcerisasaxelar hunt 3
Updated 2023-01-05
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
›
⌄
WITH
eth_bridge as (
select * from ethereum.core.fact_transactions where tx_hash='0xc01b620f8960f9cdb8370cab4e721dce6fbc680da2deded0ac4bfd9263890944'
),
axl_bridge as (
select * from axelar.core.fact_transactions where tx_id='0xc01b620f8960f9cdb8370cab4e721dce6fbc680da2deded0ac4bfd9263890944'
),
osmo_swaps as (
select * from osmosis.core.fact_transactions where (tx_from ='osmo1ku2k4ttnyg3vrscnh9jmw78u7q00zwe0jp5j5u')
and block_timestamp>='2022-10-20'
),
osmo_transfers as (
select * from axelar.core.fact_transfers where (receiver='osmo1ku2k4ttnyg3vrscnh9jmw78u7q00zwe0jp5j5u' or sender ='osmo1ku2k4ttnyg3vrscnh9jmw78u7q00zwe0jp5j5u')
),
axl_transfers as (
select * from axelar.core.fact_transfers where receiver='axelar1ku2k4ttnyg3vrscnh9jmw78u7q00zwe07532f0'
)
--select 'Ethereum Satellite bridge', * from eth_bridge
--union
--select 'Axelar Satellite bridge', * from axl_bridge
--union
select 'Osmo swaps', * from osmo_swaps
--select 'Osmosis Transfers', * from osmo_transfers
--union select 'Axelar Transfers', * from axl_transfers
Run a query to Download Data