GAS_FEE | UNIQUE_MINTING_WALLETS | TOTAL_MINTS | |
---|---|---|---|
1 | 0.77613 | 1 | 1 |
2 | 0.0214526832 | 2 | 2 |
3 | 0.01534884 | 1 | 1 |
4 | 0.0147372576 | 15 | 15 |
5 | 0.0147360096 | 13 | 13 |
6 | 0.0147348864 | 4 | 4 |
7 | 0.0147337632 | 2 | 2 |
8 | 0.0145302768 | 7 | 7 |
9 | 0.0145291536 | 3 | 3 |
10 | 0.012281022 | 4 | 4 |
11 | 0.012280008 | 2 | 2 |
12 | 0.012279072 | 1 | 1 |
13 | 0.012278136 | 1 | 1 |
14 | 0.012107628 | 1 | 1 |
15 | 0.011307348 | 1 | 1 |
16 | 0.0098248176 | 7 | 7 |
17 | 0.0098232576 | 1 | 1 |
18 | 0.00891877 | 1 | 1 |
19 | 0.008918049 | 1 | 1 |
20 | 0.008187348 | 70 | 70 |
JeffersPrivate minting analysis
Updated 2025-03-08
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 mint_data as
(
select *
from monad.testnet.fact_event_logs
where contract_address = lower('0xE8F0635591190Fb626F9D13C49b60626561Ed145')
and topic_1 = lower('0x0000000000000000000000000000000000000000000000000000000000000000')
and block_timestamp >= '2025-02-19 16:00:00'
),
private_mint as
(
select
m.tx_hash,
m.contract_address AS nft_contract,
m.origin_from_address AS minter_wallet,
m.origin_to_address AS minting_contract,
t.block_timestamp,
t.from_address,
t.to_address,
t.value as MON_value,
t.tx_fee as gas_fee,
from mint_data m
join monad.testnet.fact_transactions t
on m.tx_hash = t.tx_hash
where m.block_timestamp < '2025-02-20 15:59:00'
order by m.block_timestamp
)
SELECT
gas_fee,
COUNT(DISTINCT minter_wallet) AS unique_minting_wallets,
COUNT(*) AS total_mints
FROM private_mint
GROUP BY gas_fee
ORDER BY gas_fee DESC;
Last run: about 2 months ago
35
638B
8s