Kruys-Collinsmain monad
    Updated 2025-04-10
    WITH contract_addresses AS (
    SELECT DISTINCT address FROM monad.testnet.dim_contracts
    ),
    transaction_base AS (
    SELECT
    tx.tx_hash,
    tx.block_number,
    tx.block_timestamp,
    tx.from_address,
    tx.to_address,
    tx.tx_succeeded,
    tx.value,
    tx.tx_fee,
    tx.gas_price,
    tx.gas_used,
    tx.gas_limit,
    tx.cumulative_gas_used,
    tx.effective_gas_price,
    tx.max_fee_per_gas,
    tx.max_priority_fee_per_gas,
    tx.tx_type,
    tx.nonce,
    tx.tx_position,
    CASE WHEN c_from.address IS NOT NULL THEN 1 ELSE 0 END AS from_is_contract,
    CASE WHEN c_to.address IS NOT NULL THEN 1 ELSE 0 END AS to_is_contract
    FROM monad.testnet.fact_transactions tx
    LEFT JOIN contract_addresses c_from ON tx.from_address = c_from.address
    LEFT JOIN contract_addresses c_to ON tx.to_address = c_to.address
    WHERE tx.block_timestamp >= '2025-02-19'
    ),
    contract_data AS (
    SELECT
    COUNT(DISTINCT dc.address) AS total_contracts_deployed,
    COUNT(DISTINCT dc.creator_address) AS total_contract_creators
    Last run: 18 days ago
    TOTAL_TRANSACTIONS
    SUCCESSFUL_TRANSACTIONS
    FAILED_TRANSACTIONS
    SUCCESS_RATE_PERCENTAGE
    UNIQUE_EOA_SENDERS
    UNIQUE_EOA_RECEIVERS
    TOTAL_TRANSACTION_FEES
    AVG_TRANSACTION_FEE
    AVG_GAS_PRICE
    AVG_GAS_USED
    AVG_GAS_LIMIT
    AVG_GAS_UTILIZATION_PERCENTAGE
    TOTAL_VALUE_TRANSFERRED
    AVG_TRANSACTION_VALUE
    HIGHEST_TRANSACTION_VALUE
    LOWEST_TRANSACTION_VALUE
    TOTAL_BLOCKS
    AVG_TRANSACTIONS_PER_BLOCK
    TRANSACTIONS_PER_SECOND
    TOTAL_CONTRACTS_DEPLOYED
    TOTAL_CONTRACT_CREATORS
    1
    7900170577662707662373378696.9914460010088797476692616.826439010.00847139744657.471889822144484.714542144484.3046100771539930.5091660.97660176384000000007507040105.24182.48122077111553816
    1
    211B
    239s