mehdimarjanNew Wallets
Updated 2022-05-19
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
WITH new_wallet AS (
SELECT b.block_timestamp::date as date, a.address AS address
FROM algorand.account a
JOIN algorand.block b
ON b.block_id=a.created_at
WHERE block_timestamp::date >= '2022-05-01'
AND account_closed = false
)
SELECT date, COUNT(DISTINCT address) AS number_of_new_wallets
FROM new_wallet
GROUP BY date
ORDER BY date
Run a query to Download Data