MufasaWhen are these wallets created
Updated 2022-07-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
SELECT
account.address as address,
account.created_at as Block_created,
block.block_timestamp as createdat
FROM
algorand.account account
INNER JOIN
algorand.block block
ON account.created_at=block.block_id
WHERE
address in (
select distinct swapper as wallets
FROM
algorand.swaps
where
SWAP_PROGRAM in ('pactfi','algofi','wagmiswap', 'tinyman') and
block_timestamp::date >= '2022-05-01' and block_timestamp::date <= '2022-06-30'
)
group by 1,2,3
Run a query to Download Data