winnie-fsFee By Deployed Chain copy
    Updated 2024-08-09
    -- forked from Eman-Raz / Fee By Deployed Chain @ https://flipsidecrypto.xyz/Eman-Raz/q/pLU3PqDs_QHa/fee-by-deployed-chain

    SELECT call:chain as "Deployed Chain",
    sum(data:gas:gas_used_amount*data:gas_price_rate:source_token.token_price.usd) as "Total Gas Fee",
    avg(data:gas:gas_used_amount*data:gas_price_rate:source_token.token_price.usd) as "Avg Gas Fee",
    median(data:gas:gas_used_amount*data:gas_price_rate:source_token.token_price.usd) as "Median Gas Fee",
    max(data:gas:gas_used_amount*data:gas_price_rate:source_token.token_price.usd) as "Max Gas Fee"
    FROM axelar.axelscan.fact_gmp
    where data:interchain_token_deployment_started:event='InterchainTokenDeploymentStarted'
    and data:approved:returnValues:contractAddress='0xB5FB4BE02232B1bBA4dC8f81dc24C26980dE9e3C'
    and status='executed'
    and event='ContractCall'
    and simplified_status='received'
    and gas_status='gas_paid_enough_gas'
    and is_call_from_relayer='false'
    and is_invalid_call='false'
    and is_two_way='false'
    and created_at::date between '{{Start_Date}}' and '{{End_Date}}'
    group by 1
    order by 2 desc


    QueryRunArchived: QueryRun has been archived