Skip to content

Latest commit

 

History

History
34 lines (19 loc) · 936 Bytes

README.md

File metadata and controls

34 lines (19 loc) · 936 Bytes

ERC-721 NFT Smart Contract

How to Deploy an ERC-721 Smart Contract

As an example, this is how relatively simple it is to deploy your own ERC-721 smart contract:

Although expensive to deploy to the ethereum mainnet in terms of gas fees, users should have control of their NFTs, not marketplaces

  1. Import the code below into Remix IDE
  2. Rename the contract and name of the NFT Token
  3. Click "compile"
  4. Select "injected Web3" as your environment
  5. Deploy the smart contract and pay the gas fee
  6. Upload your art to IPFS
  7. Copy the IPFS link into the mint function of the smart contract and click transact

Awesome Smart Contract Repositories

Name Github
Open Zepplin https://github.com/OpenZeppelin/openzeppelin-contracts
0xcert https://github.com/0xcert/ethereum-erc721
DeFi Dev Road Map https://github.com/OffcierCia/DeFi-Developer-Road-Map

License

MIT