mo115li.fi total Networks
    Updated 2023-04-14
    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