Code Monkey home page Code Monkey logo

erc721_nft's Introduction

ERC-721 NFT Tutorial - Solidity

1. OpenZeppelin - Contracts Wizard

https://docs.openzeppelin.com/contracts/4.x/wizard

  • Select ERC721

  • Change Name and Symbol

  • Edit Base URI - for your tokens

  • Features

    • Mintable + Auto Increment Ids
    • Pauseable
    • Enumerable

Click on 'Open in Remix'

2. Remix - Ethereum IDE

https://remix.ethereum.org/

  • Divide the code up into sections using comments
      1. Property Variables
      1. Lifecycle Methods
      1. Pauseable Functions
      1. Minting Functions
      1. Other Functions

Modifications

  • Remove onlyOwner modifier from safeMint
  • Add in MINT_PRICE in ether. Add corresponding require statement in `safeMint()
  • Add MAX_SUPPLY for total number of tokens. Add corresponding require statement in safeMint()
  • In the constructor, call _tokenIdCounter.increment() to start the token at 1
  • Add in withdraw() function

3. Remix - Deploy

  • Check compiler version at the type of the Solidity File: pragma solidity ^0.8.4;

  • Select the compiler from the left hand side of the page and select the corresponding compiler version - 0.8.4 or whatever the newest version is out.

  • Compile the contract

  • Select the Deploy & Run Transactions tab. Environment: JavaScript VM Account: Make note of what account you deploy it on Contract: Select YourContract.sol from the bottom of the dropdown list.

  • View the deployed contract and examine transactions.

4. Deploy - Testnet or Mainnet

Follow along with this tutorial:

https://youtu.be/0cIkcFspdaE

erc721_nft's People

Contributors

davidrazmadzeextra avatar davidrazmadze avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.