WALLET_ADDRESS | TOTAL_TRANSACTIONS | TOTAL_CONTRACTS_INTERACTED | TOTAL_FEES | ACTIVE_DAYS | MOST_POPULAR_CONTRACT | MOST_POPULAR_CONTRACT_LABEL | MOST_POPULAR_CONTRACT_TXS | TRANSACTION_RANK | |
---|---|---|---|---|---|---|---|---|---|
1 | 0x66ec04035f2f14bbbfe744a8a56ca02fd21582ff | 37 | 11 | 0.598399718 | 1 | 0x758d80767a751fc1634f579d76e1ccaab3485c9c | Nad Name Service | 13 | 1406 |
dannyamahWalet Stats
Updated 2025-02-21
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 wallet_txs AS (
SELECT
from_address AS wallet_address,
to_address AS contract_address,
tx_hash,
tx_fee,
block_timestamp
FROM monad.testnet.fact_transactions
WHERE from_address = lower('{{wallet}}')
AND tx_succeeded = TRUE
AND to_address IS NOT NULL
),
wallet_agg AS (
SELECT
wallet_address,
COUNT(DISTINCT tx_hash) AS total_transactions,
COUNT(DISTINCT contract_address) AS total_contracts_interacted,
SUM(tx_fee) AS total_fees,
COUNT(DISTINCT DATE(block_timestamp)) AS active_days
FROM wallet_txs
GROUP BY wallet_address
),
popular_contracts AS (
SELECT
wallet_address,
contract_address,
COUNT(tx_hash) AS tx_count,
ROW_NUMBER() OVER (PARTITION BY wallet_address ORDER BY COUNT(tx_hash) DESC) AS rank
FROM wallet_txs
GROUP BY wallet_address, contract_address
),
wallet_ranks AS (
SELECT
Last run: 28 days ago
1
140B
1s