superflyAverage Execution Fee amount since inception Total Execution Fee amount since inception Total Execution Numbers since inception
    Updated 2022-12-20
    select
    count(distinct tx_id) as "Execution Times",
    sum(fee) as "Total Execution Fee",
    avg(fee) as "Average Execution Fee"
    from terra.core.fact_transactions a
    join terra.core.ez_messages b
    using (tx_id)
    where message_type = '/cosmwasm.wasm.v1.MsgExecuteContract'
    and tx_succeeded = 1
    Run a query to Download Data