D3 Team[Blast]
    Updated 2024-07-23
    select
    count(distinct from_address) as "Total User",
    count(distinct tx_hash) as "Total Transactions",
    sum(value) as "Total ETH Transfer",
    (
    sum(
    case
    when status = 'SUCCESS' then 1
    else 0
    end
    ) / (count(distinct tx_hash))
    ) * 100 as "% Successful Tx"
    from
    blast.core.fact_transactions
    QueryRunArchived: QueryRun has been archived