hessTop Pairs Based on Transactions
Updated 2023-03-12
999
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 axelar as ( select block_timestamp, origin_from_address, tx_hash
from ethereum.core.ez_eth_transfers
where ETH_TO_ADDRESS LIKE lower('0x2d5d7d31F671F86C782533cc367F14109a082712')
and block_timestamp >= CURRENT_DATE - 120
UNION
select block_timestamp,origin_from_address,tx_hash
from polygon.core.ez_matic_transfers
where MATIC_TO_ADDRESS LIKE lower('0x2d5d7d31F671F86C782533cc367F14109a082712')
and block_timestamp >= CURRENT_DATE - 120
UNION
select block_timestamp,origin_from_address,tx_hash
from bsc.core.ez_bnb_transfers
where BNB_TO_ADDRESS LIKE lower('0x2d5d7d31F671F86C782533cc367F14109a082712')
and block_timestamp >= CURRENT_DATE - 120
UNION
select block_timestamp,origin_from_address,tx_hash
from avalanche.core.ez_avax_transfers
where ETH_TO_ADDRESS LIKE lower('0x2d5d7d31F671F86C782533cc367F14109a082712')
and block_timestamp >= CURRENT_DATE - 120
UNION
SELECT block_timestamp,origin_from_address,tx_hash
from arbitrum.core.ez_eth_transfers
where ETH_TO_ADDRESS LIKE lower('0x2d5d7d31F671F86C782533cc367F14109a082712')
and block_timestamp >= CURRENT_DATE - 120
UNION
select block_timestamp, FOREIGN_ADDRESS as origin_from_address,tx_id as tx_hash
from axelar.core.fact_transfers
where FOREIGN_chain in ('Avalanche','arbitrum','Fantom','Ethereum','Polygon')
and block_timestamp >= CURRENT_DATE - 120)
,
optimism as ( select block_timestamp, origin_from_address, tx_hash
from ethereum.core.ez_eth_transfers
where origin_to_address = lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1') and eth_to_address = lower('0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1')
and block_timestamp::date >= CURRENT_DATE - 360
UNION
select block_timestamp,origin_from_address, tx_hash
Run a query to Download Data