How to mint like a pro
Basic: Adjust gas fee
To adjust gas just right enough to front-run people who're minting together
Miners always prioritize transaction gives them high profit, increasing gas could jump in queue
Below is the parameter you can adjust to optimize your TX's process time
Gas limit: Gas limit x gas price x 1/10⁹ is the cost of ETH, simply use default setting
Max priority fee: It does the trick to cut in line, put a max fee -1 gwei to prioritize your TX
Max fee: The max spending in ETH you're willing to pay for this transaction
Nonce (number only used once) : An #ID to represent your TX, 1 nonce only processes once
To put your tx in the highest priority to mint, so you can get into the first available block
you have to be the earliest to submit the TX
you have to be the one with highest max fee
plus highest priority fee so miners mint your TX first even other TXs have same max fee
💡 https://etherscan.io/gastracker is the official gas tracking that has slightly delay
💡 https://www.blocknative.com/gas-estimator provides info. of max price in pending block
Advanced: Mint via contract
Minting on contract minimize delay on loading UI and adjusting gas limit.
to interact via contract, you first need to have the contract address of the NFT collection
switch to contract tab, choose write contract, connect metamask wallet
locate the correct mint functions - there could be functions like pre-mint, mint, WL mint
2 inputs are required (pay extra attention & don’t mix it up!) ETH amount - total ETH to mint, e.g. if mint price per NFT is 0.1 ETH, put 0.2 when minting 2 Number of mint - the total number you’re going to mint in correspondence with the total ETH
click write button, confirm transaction with your metamask
A trick:
If the mint contract leaks/releases before minting time, you can pre-create the mint transaction
set the gas as 1 gwei
once mint enabled (mostly based on block #), set the highest gas on chain to mint immediately
Master: Be a scientist
Automate the above actions & tricks by your codes, be the fastest to mint
requires knowledge on solidity, JavaScript, Web3 for contract interaction
lots of reference on GitHub
Rarity check can also be done to snipe rare traits a step ahead
insert token ID into contract ‘URI’ function, so to get corresponding metadata .json file
parse .json to extract traits & image of each NFT token
Last updated