andurilPegaxy Daily Users
Updated 2022-03-07
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
SELECT
date,
COUNT(DISTINCT from_address) AS daily_users,
'Pegaxy' as game
FROM (
SELECT
block_timestamp::date AS date,
from_address,
COUNT(DISTINCT tx_id) AS n_transaction
FROM polygon.transactions
WHERE block_timestamp > getdate() - interval '60 days'
and to_address = lower('0xc1c93D475dc82Fe72DBC7074d55f5a734F8cEEAE') --Pegaxy contract address
GROUP BY 1,2
)
WHERE n_transaction <> 0
GROUP BY 1
Run a query to Download Data