mr_sami7-pmCkDGmy wallet dapper
    Updated 2023-01-04
    with account_creation as (
    select * from flow.core.fact_events
    where block_timestamp > '2022-06-01' -- can change as needed
    and event_type = 'AccountCreated'
    and event_data:address::string = '0x8fa44cee05d21b15' -- user enters their Dapper Wallet here
    )

    select * from flow.core.fact_transactions
    where tx_id in (select tx_id from account_creation)
    and proposer = '0x8fa44cee05d21b15' -- dapper labs address, do not exclude. Query will return 0 rows if account was created using another wallet, like Blocto
    Run a query to Download Data