select sum(tx_fee) as fee_paid, count(distinct tx_hash) as block_sent
from ethereum.core.fact_transactions
where tx_hash in (
select distinct tx_hash
from ethereum.core.fact_event_logs
where origin_from_address = '0x2c169dfe5fbba12957bdd0ba47d9cedbfe260ca7'
and origin_to_address = '0xc662c410c0ecf747543f5ba90660f6abebd9c8c4'
)