adambalanear,,
Updated 2022-10-22
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
a as
(SELECT
count (DISTINCT tx_signer) as users
from near.core.fact_transactions
where tx_receiver ='x.paras.near'
or tx_receiver ='marketplace.paras.near')
,b as (
SELECT
count (DISTINCT tx_hash) as trxs
from near.core.fact_transactions
where tx_receiver ='x.paras.near'
or tx_receiver ='marketplace.paras.near'
and tx_status='Success')
,c as (
SELECT
sum (gas_used/10000000000000000) as total_gas
from near.core.fact_transactions
where tx_receiver ='x.paras.near'
or tx_receiver ='marketplace.paras.near'
and tx_status='Success')
select
Run a query to Download Data