TX_CT | RECEIPT_CT | BLOCKCHAIN_CT | TOKEN_CT | ACCOUNT_CT | |
---|---|---|---|---|---|
1 | 23752 | 23781 | 13 | 63 | 1764 |
Flipside TeamNEP245 - Count Metrics
Updated 20 hours ago
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 source_data as (
select
*
from
$query('f7283bcc-2a59-45fe-8173-276bc7031ad0')
),
metrics as (
select
count(distinct tx_hash) as tx_ct,
count(distinct blockchain) as blockchain_ct,
count(distinct token_id_raw) as token_ct,
count(distinct receipt_id) as receipt_ct
from
source_data
),
user_ct as (
select
count(distinct account_id) as account_ct
from
(
select
distinct owner_id as account_id
from
source_data
union
select
distinct old_owner_id as account_id
from
source_data
union
select
distinct new_owner_id as account_id
from
source_data
)
)
Last run: about 20 hours agoAuto-refreshes every 24 hours
1
26B
2s