Let's mint some NFTs
This week weâre talking about NFTs â thatâs right, non-fungible tokens and weâre joined by Mikeal Rogers, whoâs leading all things InterPlanetary Linked Data at Protocol Labs. We go down the NFT rabbit hole on a very technical level and we come out the other side with clarity and a compelling use of NFTs.
Matched from the episode's transcript đ
Mikeal Rogers: [32:14] Right. So if you wanna create one, you do whatâs called minting. To mint an NFT means you take the data, you put it into IPFS⌠You can use this project that I talked about, NFT.storage, and thatâll handle getting all of the data in IPFS, creating the metadata file, getting you what you need to work with an NFT. But then youâve gotta pick a blockchain youâre gonna use, and what youâre gonna do is youâre gonna develop a contract around how that NFT is used, and then youâre gonna reference that IPFS address for that metadata in that NFT. And then youâre going to use the userâs wallet. So the user that is minting the NFT, not the developer - this is the userâs wallet - will then sign that transaction and put that on the network.
We can link to an example of how this all works, actually. Thatâs probably a little bit better. Thereâs a blog post about this little project called Minty, that we wrote at Protocol Labs, that does some minting. If youâre pulling apart these different components, thereâs parts of this that are on the developer, and parts that are on the user; so the user has to have a wallet around, and thereâs different ways that different applications have approached having that wallet. Thereâs a project called Metamask, which is a very popular wallet for Ethereum⌠You can use Ethereum wallets on a lot of other chains as well. Itâs a public-private key. But Metamask is really nice in that that stays in secure storage on peopleâs devices. Itâs never shared with the application. So thereâs no man in the middle stuff, thereâs no custody issues. Itâs always the userâs address. Thatâs a really great one.
But a lot of these projects that are getting people to set up Metamask, getting people to set up these wallets is actually a big barrier to entry, so a lot of the NFT minting sites that you might go to will just create a wallet for you, and theyâll hold on to the public-private key pair. And that can be problematic, because if they get hacked, your private keyâs gone⌠And also, they can kind of run off with it. You really want to have custody of your wallet in this ecosystem⌠But again, itâs really young, itâs really immature. The user experiences around wallet custody are not entirely worked out very well. Thereâs a bunch of sites where you have an account with them and they have that wallet, and then theyâre handling a lot of the signature stuff for you when you mint these NFTs.