select Top 10 pool_name,
count(distinct TX_HASH) as "# Activity"
from optimism.velodrome.ez_staking_actions
where 1=1
and STAKING_ACTION_TYPE = 'withdraw'
and BLOCK_TIMESTAMP >= CURRENT_DATE - 17
and BLOCK_TIMESTAMP < CURRENT_DATE
group by 1
order by "# Activity" desc