select date(block_timestamp) as date, count(ORIGIN_FROM_ADDRESS) as n_address_staking
from ethereum.core.fact_token_transfers
where --tx_hash='0xf472b1a9283b863c5b8e7e01751603acd703e03cc04f105477aa92a3cf0145a0' and
origin_to_address='0xae7ab96520de3a18e5e111b5eaab095312d7fe84' and contract_address='0xae7ab96520de3a18e5e111b5eaab095312d7fe84' and
block_timestamp>='2022-03-01'
group by 1 order by 1
--limit 100