mo115li.fi total Networks
Updated 2023-04-14
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 Txs as(
select BLOCK_TIMESTAMP,TX_HASH, FROM_ADDRESS, 'Arbitrum' as Network
from arbitrum.core.fact_transactions
where TO_ADDRESS = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP > '2023-02-09'
and BLOCK_TIMESTAMP < '2023-03-02'
and STATUS = 'SUCCESS'
UNION
select BLOCK_TIMESTAMP,TX_HASH, FROM_ADDRESS, 'Avalanche' as Network
from Avalanche.core.fact_transactions
where TO_ADDRESS = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP > '2023-02-09'
and BLOCK_TIMESTAMP < '2023-03-02'
and STATUS = 'SUCCESS'
UNION
select BLOCK_TIMESTAMP,TX_HASH, FROM_ADDRESS, 'BSC' as Network
from bsc.core.fact_transactions
where TO_ADDRESS = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP > '2023-02-09'
and BLOCK_TIMESTAMP < '2023-03-02'
and STATUS = 'SUCCESS'
UNION
select BLOCK_TIMESTAMP, TX_HASH,FROM_ADDRESS, 'Ethereum' as Network
from ethereum.core.fact_transactions
where TO_ADDRESS = '0x1231deb6f5749ef6ce6943a275a1d3e7486f4eae'
and BLOCK_TIMESTAMP > '2023-02-09'
and BLOCK_TIMESTAMP < '2023-03-02'
and STATUS = 'SUCCESS'
Run a query to Download Data