kiacryptoTransaction fees
    Updated 2022-05-31
    select date_trunc('day', block_timestamp) as date, 0 as fee, 'flow' as blockchain
    from flow.core.fact_transactions
    where date >= '2022-05-09'
    group by 1

    union all

    select date_trunc('day', block_timestamp) as date, sum(fee/pow(10, 8)) as fee, 'solana' as blockchain
    from flipside_prod_db.solana.fact_transactions
    where date >= '2022-05-09'
    group by 1

    union all

    select date_trunc('day', block_timestamp) as date, sum(tx_fee) as fee, 'ethereum' as blockchain
    from flipside_prod_db.ethereum_core.fact_transactions
    where date >= '2022-05-09'
    group by 1
    union all

    select date_trunc('day', block_timestamp) as date, sum(fee) as fee,'algorand' as blockchain
    from flipside_prod_db.algorand.transactions
    where date >= '2022-05-09'
    group by 1
    Run a query to Download Data