KARTODBots list on Solana
Updated 2022-06-18
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
›
⌄
WITH temp AS (
SELECT
DATE_TRUNC('day', BLOCK_TIMESTAMP) AS "Day",
SIGNERS AS "Bots",
COUNT(DISTINCT TX_ID) AS "Transactions"
FROM solana.core.fact_transactions
WHERE BLOCK_TIMESTAMP >= CURRENT_DATE() - INTERVAL'30 day'
GROUP BY "Day", "Bots"
HAVING COUNT(DISTINCT TX_ID) >= 25
)
SELECT
"Bots",
SUM("Transactions") AS "Total Transactions",
"Total Transactions"/30 AS "Average txs per day"
FROM temp
GROUP BY 1
ORDER BY 2 desc
Run a query to Download Data