theericstoneCelcius Wallets
    Updated 2022-06-13
    with thecw as (
    select * from crosschain.address_labels
    where address_name = 'celsius wallet'
    )

    select * from ethereum.core.fact_event_logs
    where (
    origin_from_address in (select address from thecw)
    or origin_to_address in (select address from thecw)
    ) and block_timestamp > '2022-06-06'
    and event_name <> 'Approval';
    Run a query to Download Data