MilesFinchMetaplex Bot Taxes
Updated 2022-05-03
99
1
2
3
4
5
6
7
8
9
10
11
12
13
›
⌄
SELECT count(*) * 0.01 AS BOT_TAX_PAST_3_DAYS
FROM solana.fact_transactions
WHERE block_timestamp >= '2022-04-30'
AND CAST(log_messages as string) ILIKE '%Candy Machine Botting is taxed at%'
select signers, count(*)
from solana.fact_transactions
WHERE block_timestamp >= '2022-04-30'
AND CAST(log_messages as string) ILIKE '%Candy Machine Botting is taxed at%'
group by signers
order by signers desc
Run a query to Download Data