soskiCreated Dapper wallet
Updated 2022-10-21
9
1
2
3
4
5
6
7
8
9
›
⌄
with account_creation as (select *
from flow.core.fact_events
where block_timestamp > '2022-10-21'
and event_type = 'AccountCreated'
and event_data:address::string = '0x757056eb2b5291ec')
select COUNT_AUTHORIZERS,CHAIN_ID,AUTHORIZERS,BLOCK_TIMESTAMP
from flow.core.fact_transactions
where tx_id in (select tx_id from account_creation)
and proposer = '0x18eb4ee6b3c026d2'
Run a query to Download Data