maybeyonasdaily_txs
Updated 2022-09-29
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
tx_data as (
select
block_timestamp,
tx_hash,
tx_receiver,
tx_signer,
tx_status
from near.core.fact_transactions
)
select
date(block_timestamp) as date,
count(distinct tx_hash) as txs,
count( distinct
case when tx_status = 'Success' then tx_hash else null end
) as s_txs,
count( distinct
case when tx_status = 'Success' then null else tx_hash end
) as f_txs,
count(distinct tx_signer) as users,
count( distinct
case when tx_status = 'Success' then tx_signer else null end
) as s_user,
count( distinct
case when tx_status = 'Success' then null else tx_signer end
) as f_user,
count(distinct tx_receiver) as receivers,
count( distinct
case when tx_status = 'Success' then tx_receiver else null end
) as s_receiver,
count( distinct
case when tx_status = 'Success' then null else tx_receiver end
Run a query to Download Data