bergselect count(distinct(tx_hash)) as tx_num, count(distinct(origin_from_address)) as wallets_num from ethereum.core.fact_event_logs where ( origin_to_address = '0x600df00d3e42f885249902606383ecdcb65f2e02' or contract_address = '0x600df00d3e42f885249902606383ecdcb65f2e02' ) and tx_status = 'SUCCESS'
    Updated 2022-11-28
    select
    count(distinct(tx_hash)) as tx_num,
    count(distinct(origin_from_address)) as wallets_num
    from ethereum.core.fact_event_logs
    where (
    origin_to_address = '0x600df00d3e42f885249902606383ecdcb65f2e02'
    or
    contract_address = '0x600df00d3e42f885249902606383ecdcb65f2e02'
    )
    and tx_status = 'SUCCESS'
    Run a query to Download Data