Get the 10 most used contracts over the last month
Typical query time: ~60 seconds
SELECT to_address,COUNT(*) AS transaction_countFROM eth.transactionsWHERE block_timestamp > UNIX_TIMESTAMP(NOW()) -2592000GROUP BY to_addressORDER BY transaction_count DESCLIMIT10;