Simple way to mint NFTs directly from contracts
(Like, rt & Bookmark, Might be helpful later)
1/n. Retrieve the smart contract of the project
- Go on opensea, tap on the three dots(โฆ)
- Click on view on etherscan, base scan, solscan or whatever it brings
2/n. Write the contract to mint
- Navigate to contract, connect your wallet
- Click on write
- Scroll down to where thereโs a mint function (mint, sometimes thereโs an additional prefix to the mint button e.g publicmint, safemint, mintseadrop)
- For minted, enter your address, Quantity, enter the amount of NFTs you want to mint
- Proceed to write and sign the transaction. (if the transaction fails, its fails because of insufficient liquidity to mint or invalid parameters)
Some contracts will require you to enter the amount in ETH you want to pay(e.g 0.001ETH), while some will automatically do it for you without you entering the amount
So if youโre minting 1 enter 0.001ETH
If youโre minting 2 enter 0.002ETH