January 2020
Intermediate to advanced
530 pages
11h 11m
English
We will start by creating a .sol file in our contracts directory and will name this file Condos.sol:
pragma solidity ^0.5.2;
import "openzeppelin-solidity/contracts/token/ERC721/ERC721Metadata.sol";
ERC721Metadata.sol is an extremely useful resource for creating non-fungible tokens. It implements the hashmap TokenURI for storing token metadata. This helps as the native ERC721 standard does not implement a standard for capturing token metadata. It can be used to quickly create an ERC721 ...
Read now
Unlock full access