Building a fully On-Chain NFT
Introduction
First Steps
File Header and Imports
// SPDX-License-Identifier: MIT
This line specifies the license under which the code is released.
pragma solidity ^0.8.0;
This line specifies the version of the Solidity compiler to be used. It ensur...
drblack-web3.hashnode.dev3 min read