flipside
Products
For Protocols
For Analysts
For Explorers
About
Log in
Become a Partner
flipside
2024-06-09 05:34 PM
cryptall
2024-06-09 05:34 PM
Updated 2024-08-22
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
›
⌄
SELECT
DATE_TRUNC
(
'week'
,
BLOCK_TIMESTAMP
)
AS
week
,
COUNT
(
DISTINCT
SIGNER_ID
)
AS
number_of_distinct_users
,
COUNT
(
*
)
AS
number_of_transactions
FROM
near
.
horizon
.
fact_decoded_actions
GROUP
BY
DATE_TRUNC
(
'week'
,
BLOCK_TIMESTAMP
)
ORDER
BY
week
;
Results
QueryRunArchived: QueryRun has been archived