Hessishstark - avg new wallets
Updated 2024-05-11
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with new_w as (SELECT DISTINCT CONTRACT, min(TIMESTAMP::date) as date
from external.tokenflow_starknet.decoded_transactions
where CHAIN_ID = 'mainnet'
group by 1)
SELECT count(DISTINCT CONTRACT)/count(DISTINCT date) as "avg new wallets per day" , 'Before ArgentX campaign' as period
from new_w
where date >= '2023-01-01' and date <= '2023-05-01'
group by period
union
SELECT count(DISTINCT CONTRACT)/count(DISTINCT date) as "avg new wallets per day" , 'After ArgentX campaign' as period
from new_w
where date >= '2023-05-02'
group by period
QueryRunArchived: QueryRun has been archived