In Week 1 we will follow [NFT-Tutorial by BlockDevsUnited] (https://github.com/BlockDevsUnited/NFT-Tutorial)
This mini tutorial is about how to set up a development environment for Week 1 using Remix IDE.
// this line is added to create a gist. Empty file is not allowed. |
// this line is added to create a gist. Empty file is not allowed. |
{ | |
"name": "Black Stone", | |
"description": "Black stone found at the beach", | |
"image": "https://storage.googleapis.com/opensea-prod.appspot.com/creature/50.png", | |
"attributes": [ | |
{ | |
"trait_type": "Color", | |
"value": "Black" | |
}, | |
{ |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "./IERC721.sol"; | |
import "./IERC721Receiver.sol"; | |
import "./extensions/IERC721Metadata.sol"; | |
import "../../utils/Address.sol"; | |
import "../../utils/Context.sol"; | |
import "../../utils/Strings.sol"; |
In Week 1 we will follow [NFT-Tutorial by BlockDevsUnited] (https://github.com/BlockDevsUnited/NFT-Tutorial)
This mini tutorial is about how to set up a development environment for Week 1 using Remix IDE.