select * from ethereum.core.ez_nft_sales
where buyer_address = lower('0x03a64Ad3b7147Bb1ecBF778f435afb969316FDf4')
and block_timestamp::date >= '2022-01-01'
select
date_trunc('month', block_timestamp::date) as date,
count(tx_hash) as total_transacciones
from
ethereum.core.fact_transactions
where
from_address = lower('0x65392485b8d869e59b5b2a3cf7de815ed16939aa')
and block_timestamp::date >= '2022-01-01'
group by
date
order by date