CryptoIcicleWhat's Going On With Gnosis? - Number of Users
Updated 2022-10-17
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
-- There’s been some unusual activity with Gnosis as pointed out by our community. Time to figure out exactly what’s going on.
-- Take a deep dive into recent activity on Gnosis, especially recent rapid rises in the number of active users, transactions, and more.
-- Make any hypothesis you can about what is driving this activity. Is there a new dapp that launched? Is there some incentive program going on? Or is the spike in users/txns due to some sybil attack?
-- Note any trends or outliers you see.
-- Pay by Quality Your score determines your final payout.
-- Grand Prize 112.5 USDC (A score of 11 or 12 earns you a Grand Prize title)
-- Payout 75 USDC
-- Score Multiplier0-7 : 0% 8 : 50% 9 : 75% 10 : 100% 11 : 125% 12 : 150%
-- Payout Network Ethereum
-- Level Intermediate
-- Difficulty Hard
-- SQL Credit: https://app.flipsidecrypto.com/velocity/queries/58667534-d303-43df-8ea1-3ea557ab706f
SELECT
*,
sum(new_users) over (ORDER BY date) as total_users
FROM (
SELECT
date,
count(*) as new_users
FROM (
SELECT
from_address,
min(date_trunc('{{date_range}}',block_timestamp)) as date
FROM gnosis.core.fact_transactions
where block_timestamp >= CURRENT_DATE - {{n_days}}
GROUP BY 1
)
GROUP BY 1
ORDER BY 1 DESC
)
order by date desc
Run a query to Download Data