Kruys-Collinsmain monad
    Updated 2025-02-25
    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
    409454024023206571078198.2618196302098954431292.8574374720.0105332055953.753408345195862.265385195860.613834100271066518.8910096.620094267400000000107728438.0170.83698124152070
    1
    200B
    14s