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 | 40945402 | 40232065 | 710781 | 98.26 | 1819630 | 2098954 | 431292.857437472 | 0.01053320559 | 53.753408345 | 195862.265385 | 195860.613834 | 100 | 271066518.891009 | 6.620094267 | 40000000 | 0 | 1077284 | 38.01 | 70.83 | 698124 | 152070 |
Kruys-Collinsmain monad
Updated 2025-02-25
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
›
⌄
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
1
200B
14s