WITH deposits AS (
SELECT *
FROM flipside_prod_db.ethereum.transactions
WHERE TO_ADDRESS='0xae7ab96520de3a18e5e111b5eaab095312d7fe84'
AND FUNCTION_NAME='submit'
AND SUCCESS ='TRUE'
)
SELECT *
/* DATE_TRUNC('hour', BLOCK_TIMESTAMP) AS time,
EVENT_COUNT AS cnt */
FROM deposits
LIMIT 100;
/* flipside_prod_db.ethereum.token_prices_hourly */