USERS | ATTEMPTS | |
---|---|---|
1 | 9 | 75 |
LittlerDataNear ai dev quest counting attempts copy
Updated 2025-03-03
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
›
⌄
-- forked from Near ai dev quest counting attempts @ https://flipsidecrypto.xyz/studio/queries/593a4c18-9167-4e8c-ba5c-66010862226b
with attempts as (
select
tx_hash
,block_timestamp
,tx_signer
,action_data
,action_data:args:message as message
,action_data:args:request_id as request_id
,action_data:method_name as method_name
from near.core.ez_actions
where block_timestamp > '2025-02-25'
and tx_receiver = 'neardevnewsletter-issue50.frol.near'
and action_name = 'FunctionCall' --the call made from the user
and tx_succeeded = 'TRUE'
and tx_signer <> 'neardevnewsletter-issue50.frol.near'--no avoid retrieving neardevnewsletter responses
--and tx_hash = '2zJwUHmexMVfJkJ2odwp4dvUQFEvagmFaR2TFLeeNMLg'
and block_timestamp < '2025-03-01 11:57:00' --seconds after the winner prompt was forwarded
)
select
count(distinct tx_signer) as users
,count(tx_hash) as attempts
from attempts
Last run: about 1 month ago
1
8B
1s