KaskoazulNear Social Users --> Txs with methods
Updated 2023-01-21
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
›
⌄
WITH first_social_txs AS (
SELECT
tx_signer AS user_name
, MIN(block_timestamp) AS first_social_tx
FROM
near.core.fact_transactions
WHERE
tx_receiver = 'social.near'
AND tx_status = 'Success'
GROUP BY
user_name
)
, tx_with_method AS (
SELECT
ft.block_id
, COALESCE(ft.block_timestamp, b.block_timestamp) AS block_timestamp
, ft.tx_hash
, SPLIT_PART(ft.action_id, '-', 2) AS action_no
, ft.action_name
, ft.method_name
, ft.args
, ft.deposit / POW(10,24) AS deposit_near
, t.tx_signer as profile
, t.tx_receiver
, PARSE_JSON(args) as parsed_args
, parsed_args:data[0] as data_t
--, args:data:profile:index
FROM
near.core.fact_actions_events_function_call ft
LEFT JOIN
near.core.fact_blocks b
ON
ft.block_id = b.block_id
LEFT JOIN
near.core.fact_transactions t
Run a query to Download Data