MINT_DATE | TOTAL_GAS_FEES | AVG_GAS_FEE_PER_MINT | |
---|---|---|---|
1 | 2025-02-23 00:00:00.000 | 33.136010957 | 0.01116066385 |
2 | 2025-02-24 00:00:00.000 | 0.100205763 | 0.00357877725 |
3 | 2025-02-25 00:00:00.000 | 0.014629168 | 0.003657292 |
4 | 2025-02-26 00:00:00.000 | 0.078843031 | 0.003754430048 |
5 | 2025-02-27 00:00:00.000 | 0.738163789 | 0.005198336542 |
6 | 2025-02-28 00:00:00.000 | 0.063640561 | 0.003349503211 |
monadmetrics-JFe1_RGas fees paid for mints
Updated 2025-02-28
99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
›
⌄
SELECT
DATE_TRUNC('day', t.block_timestamp) AS mint_date,
SUM(t.tx_fee) AS total_gas_fees,
AVG(t.tx_fee) AS avg_gas_fee_per_mint
FROM monad.testnet.fact_event_logs e
JOIN monad.testnet.fact_transactions t
ON e.tx_hash = t.tx_hash
WHERE e.contract_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
AND e.origin_to_address = '0x66e40f67afd710386379a6bb24d00308f81c183f'
AND e.topic_0 = '0xc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62'
AND e.tx_succeeded = 'TRUE'
GROUP BY mint_date
ORDER BY mint_date ASC
Last run: about 1 month ago
6
327B
9s