flipside
Insights
Studio
Quests
For Chains
For Analysts
For Explorers
About
Log in
Sign up
flipside
NEAR SOCIAL 2 - Posts
rackhael
NEAR SOCIAL 2 - Posts
Updated 2023-06-30
Copy Reference
Fork
99
1
2
3
4
5
6
7
8
9
10
11
12
›
⌄
SELECT
date_trunc
(
'day'
,
block_timestamp
)
as
date
,
count
(
distinct
tx_hash
)
as
tnx_count
,
count
(
distinct
signer_id
)
as
unique_user
,
count
(
post_image
)
as
post_image
,
count
(
post_text
)
as
post_txt
from
near
.
social
.
fact_posts
group
by
1
order
by
1
;
Results
Run a query to Download Data