Tap | Wallets | Avg Tap Per Wallet | |
---|---|---|---|
1 | 8953337742 | 282807 | 31658.826486 |
MasiTotal Numbers II
Updated 2025-04-10
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
with tb1 as ( select block_timestamp,
tx_id,
SIGNERS[0] as wallet
from eclipse.core.fact_transactions t
where t.block_timestamp >= '2024-12-09'
and (t.log_messages[0] LIKE '%turboe9kMc3mSR8BosPkVzoHUfn5RVNzZhkrT2hdGxN%' or t.log_messages[2] LIKE '%turboe9kMc3mSR8BosPkVzoHUfn5RVNzZhkrT2hdGxN%')
and (t.log_messages[1] = 'Program log: Instruction: Click' or t.log_messages[3] = 'Program log: Instruction: Click')
)
select
count(tx_id) as "Tap",
count(DISTINCT wallet) as "Wallets",
"Tap"/"Wallets" as "Avg Tap Per Wallet"
from tb1
Last run: 2 months ago
1
34B
511s