DB_Transactions
    Updated 2023-12-01
    select
    count(distinct tx_hash) as transactions,
    sum(eth_value) as total_eth,
    sum(tx_fee) as total_fees,
    avg(tx_fee) as avg_fee
    from
    ethereum.core.fact_transactions
    where
    from_address = lower('0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B')
    or to_address = lower('0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B')
    Run a query to Download Data