Part-time nerd, full-time turd 💩 I build stuff for the world wide web 🌎 Co-founder @rauf_tech ✨ Current exploring all things web3

How to create a motherf*cking NFT using JavaScript
In my previous post, I explained how you can mint an NFT using Solidity. But what if you don't want to learn Solidity?Ain't nobody got time for that b*tch.You want to stick with your ol' pal JavaScript. Let me tell you that there's a way to do it. I present to you thirdweb - a library of smart contracts, SDK, and UI components that developers can use in their app. How cool would it be if you could just call a mint function, give the token's metadata as an argument, an...

How to create a motherf*cking NFT using JavaScript
In my previous post, I explained how you can mint an NFT using Solidity. But what if you don't want to learn Solidity?Ain't nobody got time for that b*tch.You want to stick with your ol' pal JavaScript. Let me tell you that there's a way to do it. I present to you thirdweb - a library of smart contracts, SDK, and UI components that developers can use in their app. How cool would it be if you could just call a mint function, give the token's metadata as an argument, an...

How to create a motherf*cking NFT using Solidity
This is a simple no-bullshit guide to creating an NFT using Solidity.Before you go any further, you need to know a little about NFTs, Crypto wallets, Solidity, and the ERC721 token standard to understand this article.I am going to start by showing you the entire code.// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract BasicNFT is ERC721URIStor...

How to create a motherf*cking NFT using Solidity
This is a simple no-bullshit guide to creating an NFT using Solidity.Before you go any further, you need to know a little about NFTs, Crypto wallets, Solidity, and the ERC721 token standard to understand this article.I am going to start by showing you the entire code.// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; contract BasicNFT is ERC721URIStor...