with account_creation as
(
select *
from flow.core.fact_events
where block_timestamp > '2022-10-28'
and event_type = 'AccountCreated'
and event_data:address::string = '0x3f70fcc359a89109'
)
select BLOCK_TIMESTAMP,CHAIN_ID,AUTHORIZERS,COUNT_AUTHORIZERS
from flow.core.fact_transactions
where tx_id in
(
select tx_id from account_creation
)
and proposer = '0x18eb4ee6b3c026d2'