FatemeTheLady03 total
Updated 2023-03-01
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
›
⌄
with
tab1 as (
SELECT
tx_signer as neth_wallet,
min(block_timestamp) as creation_time
FROM near.core.fact_transactions
WHERE tx_receiver = 'nethmap.near' and tx_signer != 'nethmap.near'
AND block_timestamp >= '2022-12-19'
GROUP BY 1
ORDER BY 2 DESC)
SELECT
count(DISTINCT tx_hash) as "Transactions",
count(DISTINCT tx_signer) as "active wallets",
"Transactions"/"active wallets" as "Avg tx per wallet"
FROM near.core.fact_transactions
WHERE TX_SIGNER IN (SELECT neth_wallet FROM tab1)
order by 1 asc
Run a query to Download Data