thejoycefine-orange
Updated 2024-11-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
›
⌄
WITH UserTransactionCounts AS (
SELECT
TX_FROM,
COUNT(TX_ID) AS user_transaction_count
FROM
axelar.core.fact_transactions
WHERE
BLOCK_TIMESTAMP >= CURRENT_DATE - INTERVAL '30 DAYS'
GROUP BY
TX_FROM
)
SELECT
AVG(user_transaction_count) AS avg_transactions_per_user
FROM
UserTransactionCounts;
QueryRunArchived: QueryRun has been archived