mlhcount of blocks and fees-final
    Updated 2022-06-30
    select
    sum (tx_fee) as total_fee,
    count(distinct BLOCK_NUMBER) as blocks
    from ethereum.core.fact_transactions
    where FROM_ADDRESS=lower('0x2C169DFe5fBbA12957Bdd0Ba47d9CEDbFE260CA7')--StarkNet operator
    and TO_ADDRESS=lower('0xc662c410C0ECf747543f5bA90660f6ABeBD9C8c4')--StarkNet core contract
    and status='SUCCESS'
    Run a query to Download Data