select block_timestamp,
event_type,
platform_name,
project_name,
tokenid,
currency_symbol,
price
from ethereum.core.ez_nft_sales
where nft_address = lower('0x524cAB2ec69124574082676e6F654a18df49A048')
and block_timestamp >= current_date - 4
and price <= 1
order by block_timestamp desc