MasiDaily Active Addresses
Updated 2024-11-15
999
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 tb0_0 AS (
SELECT
block_timestamp,
BLOCK_ID,
tx_hash,
ifnull(tx:actions[0]:Delegate:delegate_action:receiver_id::string, TX_RECEIVER)::string as receiver,
ifnull(tx:actions[0]:Delegate:delegate_action:sender_id::string, TX_SIGNER)::string AS user
FROM near.core.fact_transactions
where block_timestamp::Date >= '2024-10-01' and block_timestamp < '2024-11-01'
UNION
SELECT
block_timestamp,
BLOCK_ID,
tx_hash,
to_address::string as receiver,
from_address::string AS user
FROM near.core.ez_token_transfers
where block_timestamp::Date >= '2024-10-01' and block_timestamp < '2024-11-01'
UNION
SELECT
block_timestamp,
BLOCK_ID,
tx_hash,
receiver_id::string as receiver,
SIGNER_ID::string AS user
FROM near.core.fact_actions_events_function_call
where block_timestamp::Date >= '2024-10-01' and block_timestamp < '2024-11-01'
UNION
SELECT
block_timestamp,
BLOCK_ID,
QueryRunArchived: QueryRun has been archived