rezarwzKey Metrics
    Updated 5 days ago
    with Transactions_m as (
    SELECT
    count(DISTINCT from_Address) as "# of Total Wallets",
    count(DISTINCT tx_hash) as "Total Transactions",
    sum(GAS_USED) as "Total Gas Used",
    avg(TX_FEE) as "AVG TX Fee",
    sum(value) as "Total ETH Volume",
    (
    Sum(
    CASE
    WHEN STATUS = 'SUCCESS' THEN 1
    ELSE 0
    END
    ) / (count(DISTINCT tx_hash))
    ) * 100 AS "% of Successful Tx"
    FROM
    blast.core.fact_transactions
    ),
    block_m as (
    SELECT
    count(HASH) as "Total Blocks",
    AVG(
    TIMEDIFF(SECOND, BLOCK_TIMESTAMP, NEXT_BLOCK_TIMESTAMP)
    ) AS "AVG Block Time",
    AVG(
    TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)
    ) AS "AVG TPS",
    MAX(
    TX_COUNT / TIMESTAMPDIFF(SECOND, BLOCK_TIMESTAMP, next_block_timestamp)
    ) AS "MAX TPS",
    AVG(tx_count) AS "AVG TPB",
    AVG((GAS_USED / GAS_LIMIT) * 100) AS "AVG % of Block Utilization",
    COUNT(HASH) / (
    SELECT
    TIMEDIFF(
    SECOND,
    Last run: 5 days agoAuto-refreshes every 24 hours
    Total Blocks
    AVG Block Time
    AVG TPS
    MAX TPS
    AVG TPB
    AVG % of Block Utilization
    Block Rate per second
    # of Total Wallets
    Total Transactions
    Total Gas Used
    AVG TX Fee
    Total ETH Volume
    % of Successful Tx
    1
    1744513926.87780488625653613.7556114.9901953442850.51858612239968509784518045349770.000025254901069975929.3562886398.1266
    1
    137B
    240s