Chuqs_emxtxPlatforms
Updated 2024-07-20
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT
DISTINCT platform as platforms,
COUNT(DISTINCT tx_hash) AS transaction_count,
COUNT(DISTINCT sender) AS unique_sender_count,
transaction_count / unique_sender_count as Avg_tx_per_user
FROM aptos.defi.fact_bridge_activity
WHERE block_timestamp >= '2024-01-01'
GROUP BY
1
ORDER by 2 DESC
QueryRunArchived: QueryRun has been archived